]> granicus.if.org Git - apache/commitdiff
Revert 451953 and 451951. Log the real r->method that is
authorMladen Turk <mturk@apache.org>
Tue, 3 Oct 2006 15:18:57 +0000 (15:18 +0000)
committerMladen Turk <mturk@apache.org>
Tue, 3 Oct 2006 15:18:57 +0000 (15:18 +0000)
unsupported by the AJP protocol.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@452536 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/ajp_header.c

index 3f58bd06dbf11b684b6741691caf103e3a755f9c..4f2773264448ada61f6288d474596c02ab431c10 100644 (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;
     }