From 02c70cf77e81561fecb461a4bd2ea5f28fd659a4 Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Wed, 2 Aug 2006 10:42:07 +0000 Subject: [PATCH] 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 --- modules/proxy/ajp_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index f9dc837d66..61f0135181 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; -- 2.40.0