summaryrefslogtreecommitdiffstats
path: root/modules/proxy/ajp_msg.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2012-01-05 22:43:24 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2012-01-05 22:43:24 +0100
commit0d1f9f658a1162e1f2c8ff6133fafd5e5d55af88 (patch)
tree175bd99fa9d4a629cac9709654bd542bfd05c830 /modules/proxy/ajp_msg.c
parentUpdate the comment and checks around address/connection reusability (diff)
downloadapache2-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.c2
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));