You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mt...@apache.org on 2006/08/02 12:42:07 UTC

svn commit: r427951 - /httpd/httpd/trunk/modules/proxy/ajp_msg.c

Author: mturk
Date: Wed Aug  2 03:42:07 2006
New Revision: 427951

URL: http://svn.apache.org/viewvc?rev=427951&view=rev
Log:
Make sure the error signature is logged as double
hex byte.

Modified:
    httpd/httpd/trunk/modules/proxy/ajp_msg.c

Modified: httpd/httpd/trunk/modules/proxy/ajp_msg.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/ajp_msg.c?rev=427951&r1=427950&r2=427951&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/ajp_msg.c (original)
+++ httpd/httpd/trunk/modules/proxy/ajp_msg.c Wed Aug  2 03:42:07 2006
@@ -100,7 +100,7 @@
           (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;