summaryrefslogtreecommitdiffstats
path: root/modules/proxy/ajp_msg.c
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2006-08-02 12:42:07 +0200
committerMladen Turk <mturk@apache.org>2006-08-02 12:42:07 +0200
commit02c70cf77e81561fecb461a4bd2ea5f28fd659a4 (patch)
treebcbd855bd94553299b3ea47357b71df4fdc0638c /modules/proxy/ajp_msg.c
parentAllow optional name=value options within <Proxy (diff)
downloadapache2-02c70cf77e81561fecb461a4bd2ea5f28fd659a4.tar.xz
apache2-02c70cf77e81561fecb461a4bd2ea5f28fd659a4.zip
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
Diffstat (limited to 'modules/proxy/ajp_msg.c')
-rw-r--r--modules/proxy/ajp_msg.c2
1 files changed, 1 insertions, 1 deletions
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;