]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Make sure the error signature is logged as double
authorMladen Turk <mturk@apache.org>
Wed, 2 Aug 2006 10:42:07 +0000 (10:42 +0000)
committerMladen Turk <mturk@apache.org>
Wed, 2 Aug 2006 10:42:07 +0000 (10:42 +0000)
hex byte.

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

modules/proxy/ajp_msg.c

index f9dc837d662a4b14f186df676a0009c3dba10bdd..61f01351818158f954a130a261033c8b892f61b4 100644 (file)
@@ -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;