diff options
author | Mladen Turk <mturk@apache.org> | 2006-07-31 11:42:57 +0200 |
---|---|---|
committer | Mladen Turk <mturk@apache.org> | 2006-07-31 11:42:57 +0200 |
commit | 7aa10a383a99d5da1e9fe821681bbe3e108bd402 (patch) | |
tree | 095fa3b6b4014ee49ba0aff86f1217bb73ef57a2 /modules/proxy/ajp_header.c | |
parent | Cleanup: Remove checking for pre 2.0.46 MMN. It is (diff) | |
download | apache2-7aa10a383a99d5da1e9fe821681bbe3e108bd402.tar.xz apache2-7aa10a383a99d5da1e9fe821681bbe3e108bd402.zip |
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
Diffstat (limited to 'modules/proxy/ajp_header.c')
-rw-r--r-- | modules/proxy/ajp_header.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) || |