]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
follow-up to r1656549.
authorChristophe Jaillet <jailletc36@apache.org>
Thu, 13 Sep 2018 04:19:27 +0000 (04:19 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Thu, 13 Sep 2018 04:19:27 +0000 (04:19 +0000)
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

modules/aaa/mod_auth_basic.c

index 55ea8adf37ab3ec965a183713fedd5161353fc9f..26a86d1148cbe42daab2636582235495bb3b479e 100644 (file)
@@ -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;
     }