1
0
mirror of https://github.com/mirror/wget.git synced 2025-04-17 06:50:34 +08:00

* src/iri.c: Remove use of __func__ macros

This commit is contained in:
Tim Rühsen 2017-02-03 12:28:05 +01:00
parent 00bafe72f1
commit 638df40476

View File

@ -167,7 +167,7 @@ do_conversion (const char *tocode, const char *fromcode, char const *in_org, siz
if (!strchr(in_org, '@') && !strchr(*out, '@'))
debug_logprintf ("converted '%s' (%s) -> '%s' (%s)\n", in_org, fromcode, *out, tocode);
else
debug_logprintf ("%s: logging suppressed, strings may contain password\n", __func__);
debug_logprintf ("logging suppressed, strings may contain password\n");
}
return true;
}
@ -209,7 +209,7 @@ do_conversion (const char *tocode, const char *fromcode, char const *in_org, siz
if (!strchr(in_org, '@') && !strchr(*out, '@'))
debug_logprintf ("converted '%s' (%s) -> '%s' (%s)\n", in_org, fromcode, *out, tocode);
else
debug_logprintf ("%s: logging suppressed, strings may contain password\n", __func__);
debug_logprintf ("logging suppressed, strings may contain password\n");
}
return false;
}