From: Mladen Turk Date: Tue, 3 Oct 2006 15:18:57 +0000 (+0000) Subject: Revert 451953 and 451951. Log the real r->method that is X-Git-Tag: 2.3.0~2092 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4932849eec0ce59e278ff4ea14cf9fddf70ece44;p=apache 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 --- diff --git a/modules/proxy/ajp_header.c b/modules/proxy/ajp_header.c index 3f58bd06db..4f27732644 100644 --- a/modules/proxy/ajp_header.c +++ b/modules/proxy/ajp_header.c @@ -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; }