From 7aa10a383a99d5da1e9fe821681bbe3e108bd402 Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Mon, 31 Jul 2006 09:42:57 +0000 Subject: [PATCH] Fix compile time warning. AJP protocol method is byte. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@427059 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/ajp_header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/ajp_header.c b/modules/proxy/ajp_header.c index 3054c2c6bd..4f27732644 100644 --- a/modules/proxy/ajp_header.c +++ b/modules/proxy/ajp_header.c @@ -237,7 +237,7 @@ static apr_status_t ajp_marshal_into_msgb(ajp_msg_t *msg, ajp_msg_reset(msg); if (ajp_msg_append_uint8(msg, CMD_AJP13_FORWARD_REQUEST) || - ajp_msg_append_uint8(msg, method) || + ajp_msg_append_uint8(msg, (apr_byte_t) method) || ajp_msg_append_string(msg, r->protocol) || ajp_msg_append_string(msg, uri->path) || ajp_msg_append_string(msg, r->connection->remote_ip) || -- 2.40.0