diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2012-01-05 22:43:24 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2012-01-05 22:43:24 +0100 |
commit | 0d1f9f658a1162e1f2c8ff6133fafd5e5d55af88 (patch) | |
tree | 175bd99fa9d4a629cac9709654bd542bfd05c830 /modules/proxy/ajp_msg.c | |
parent | Update the comment and checks around address/connection reusability (diff) | |
download | apache2-0d1f9f658a1162e1f2c8ff6133fafd5e5d55af88.tar.xz apache2-0d1f9f658a1162e1f2c8ff6133fafd5e5d55af88.zip |
Cure size_t abuse, curse some recent code
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1227852 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/ajp_msg.c')
-rw-r--r-- | modules/proxy/ajp_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index 69e232a394..638dfee2d8 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -326,7 +326,7 @@ apr_status_t ajp_msg_append_uint8(ajp_msg_t *msg, apr_byte_t value) apr_status_t ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, int convert) { - size_t len; + apr_size_t len; if (value == NULL) { return(ajp_msg_append_uint16(msg, 0xFFFF)); |