From: Jeff Trawick Date: Fri, 25 Feb 2011 18:25:57 +0000 (+0000) Subject: fix function name in log text X-Git-Tag: 2.3.11~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae6a997ddf57d06f8700c9b3d11d9f350d0328bc;p=apache fix function name in log text git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1074659 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index b511ce1585..5930296019 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -101,7 +101,7 @@ apr_status_t ajp_msg_check_header(ajp_msg_t *msg, apr_size_t *len) (head[0] == 0x12 && head[1] == 0x34))) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, - "ajp_check_msg_header() got bad signature %02x%02x", + "ajp_msg_check_header() got bad signature %02x%02x", head[0], head[1]); return AJP_EBAD_SIGNATURE; @@ -112,7 +112,7 @@ apr_status_t ajp_msg_check_header(ajp_msg_t *msg, apr_size_t *len) if (msglen > msg->max_size) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, - "ajp_check_msg_header() incoming message is " + "ajp_msg_check_header() incoming message is " "too big %" APR_SIZE_T_FMT ", max is %" APR_SIZE_T_FMT, msglen, msg->max_size); return AJP_ETOBIG;