diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2018-09-13 06:19:27 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2018-09-13 06:19:27 +0200 |
commit | 1e3badb8f3a6b150a097fb842d12928d21b4193b (patch) | |
tree | b760e1c949ed4e55d94ba7df3585c35fafa8ca31 /modules/aaa/mod_auth_basic.c | |
parent | * modules/ssl/ssl_engine_init.c (ssl_init_ctx_protocol): (diff) | |
download | apache2-1e3badb8f3a6b150a097fb842d12928d21b4193b.tar.xz apache2-1e3badb8f3a6b150a097fb842d12928d21b4193b.zip |
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
Diffstat (limited to '')
-rw-r--r-- | modules/aaa/mod_auth_basic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aaa/mod_auth_basic.c b/modules/aaa/mod_auth_basic.c index 55ea8adf37..26a86d1148 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; } |