From: Mladen Turk Date: Wed, 2 Aug 2006 10:42:07 +0000 (+0000) Subject: Make sure the error signature is logged as double X-Git-Tag: 2.3.0~2184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02c70cf77e81561fecb461a4bd2ea5f28fd659a4;p=thirdparty%2Fapache%2Fhttpd.git Make sure the error signature is logged as double hex byte. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@427951 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index f9dc837d662..61f01351818 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -100,7 +100,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 %x%x", + "ajp_check_msg_header() got bad signature %02x%02x", head[0], head[1]); return AJP_EBAD_SIGNATURE;