From: William Lallemand Date: Mon, 14 Nov 2022 10:34:07 +0000 (+0100) Subject: CLEANUP: ssl: remove printf in bind_parse_ignore_err X-Git-Tag: v2.7-dev9~74 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=380085dfc1ccc5023320858a147eb526c03ade59;p=thirdparty%2Fhaproxy.git CLEANUP: ssl: remove printf in bind_parse_ignore_err Remove debug printf. No backport needed. --- diff --git a/src/cfgparse-ssl.c b/src/cfgparse-ssl.c index 7cee13db03..8925feaf82 100644 --- a/src/cfgparse-ssl.c +++ b/src/cfgparse-ssl.c @@ -856,7 +856,6 @@ static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, str s1 = str; while ((token = strtok_r(s1, ",", &s2))) { s1 = NULL; - printf("token: %s\n", token); if (isdigit((int)*token)) { code = atoi(token); if ((code <= 0) || (code > SSL_MAX_VFY_ERROR_CODE)) {