Skip to content

Commit a7c59c6

Browse files
committed
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@100941 13f79535-47bb-0310-9956-ffa450edef68
1 parent 760d482 commit a7c59c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/ssl/ssl_engine_kernel.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,8 +880,8 @@ int ssl_hook_UserCheck(request_rec *r)
880880
password = auth_line;
881881

882882
if ((username[0] == '/') && strEQ(password, "password")) {
883-
ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
884-
"Encountered FakeBasicAuth spoof: %s", username);
883+
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
884+
"Encountered FakeBasicAuth spoof: %s", username);
885885
return HTTP_FORBIDDEN;
886886
}
887887
}

0 commit comments

Comments
 (0)