1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Revert 451953 and 451951. Log the real r->method that is

unsupported by the AJP protocol.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@452536 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mladen Turk
2006-10-03 15:18:57 +00:00
parent da75eb0322
commit 4932849eec

View File

@@ -220,8 +220,8 @@ static apr_status_t ajp_marshal_into_msgb(ajp_msg_t *msg,
if ((method = sc_for_req_method_by_id(r->method_number)) == UNKNOWN_METHOD) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
"ajp_marshal_into_msgb - No such method number %d",
r->method_number);
"ajp_marshal_into_msgb - No such method %s",
r->method);
return AJP_EBAD_METHOD;
}