On Thu, Aug 07, 2003 at 11:57:12PM -0000, [EMAIL PROTECTED] wrote:
>...
> +++ ssl_engine_kernel.c 7 Aug 2003 23:57:11 -0000 1.98
> @@ -880,6 +880,8 @@
> password = auth_line;
>
> if ((username[0] == '/') && strEQ(password, "password")) {
> + ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
> + "Encountered FakeBasicAuth spoof: %s", username);
> return HTTP_FORBIDDEN;
> }
Hmm. You have a request_rec there. How about:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
"Encountered FakeBasicAuth spoof: %s", username);
Providing the request means that you get more information in the error_log.
Cheers,
-g
--
Greg Stein, http://www.lyra.org/