]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: ssl: remove printf in bind_parse_ignore_err
authorWilliam Lallemand <wlallemand@haproxy.org>
Mon, 14 Nov 2022 10:34:07 +0000 (11:34 +0100)
committerWilliam Lallemand <wlallemand@haproxy.org>
Mon, 14 Nov 2022 10:34:07 +0000 (11:34 +0100)
Remove debug printf.

No backport needed.

src/cfgparse-ssl.c

index 7cee13db039d384ec5ece9500241cc2dfe910f49..8925feaf828f918498fb17ead07b5631cf30a08e 100644 (file)
@@ -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)) {