CLEANUP: ssl: remove printf in bind_parse_ignore_err

Remove debug printf.

No backport needed.
This commit is contained in:
William Lallemand 2022-11-14 11:34:07 +01:00
parent 913bea55fc
commit 380085dfc1

View 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)) {