From: Christophe Jaillet Date: Thu, 13 Sep 2018 04:19:27 +0000 (+0000) Subject: follow-up to r1656549. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2340 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e3badb8f3a6b150a097fb842d12928d21b4193b;p=thirdparty%2Fapache%2Fhttpd.git follow-up to r1656549. Instead of logging a password (which is not a good practice), clarify the associated message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1840776 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_basic.c b/modules/aaa/mod_auth_basic.c index 55ea8adf37a..26a86d1148c 100644 --- a/modules/aaa/mod_auth_basic.c +++ b/modules/aaa/mod_auth_basic.c @@ -171,8 +171,8 @@ static const char *add_basic_fake(cmd_parms * cmd, void *config, &err, NULL); if (err) { return apr_psprintf(cmd->pool, - "Could not parse fake password expression '%s': %s", pass, - err); + "Could not parse fake password expression associated to user '%s': %s", + user, err); } conf->fake_set = 1; }