From: Mladen Turk Date: Mon, 2 Oct 2006 10:26:13 +0000 (+0000) Subject: Ups. Fix typo. We are logging int, not string. X-Git-Tag: 2.3.0~2101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe0014142035f55dce1f943d75852f65e6eb2e89;p=apache Ups. Fix typo. We are logging int, not string. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@451953 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/ajp_header.c b/modules/proxy/ajp_header.c index 16802ec45d..3f58bd06db 100644 --- a/modules/proxy/ajp_header.c +++ b/modules/proxy/ajp_header.c @@ -220,7 +220,7 @@ 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 %s", + "ajp_marshal_into_msgb - No such method number %d", r->method_number); return AJP_EBAD_METHOD; }