From: Sander Striker Date: Fri, 8 Aug 2003 09:34:20 +0000 (+0000) Subject: Trivial change to reporting an error when an identity spoof is X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dfe10356c86b6046951e709a1c93bad91a0af8a;p=thirdparty%2Fapache%2Fhttpd.git Trivial change to reporting an error when an identity spoof is encountered with respect to FakeBasicAuth. Submitted by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@100941 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_kernel.c b/ssl_engine_kernel.c index 8548a59b660..f019ff36ffb 100644 --- a/ssl_engine_kernel.c +++ b/ssl_engine_kernel.c @@ -880,8 +880,8 @@ int ssl_hook_UserCheck(request_rec *r) password = auth_line; if ((username[0] == '/') && strEQ(password, "password")) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, - "Encountered FakeBasicAuth spoof: %s", username); + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, + "Encountered FakeBasicAuth spoof: %s", username); return HTTP_FORBIDDEN; } }