From 0f2072227662af7fd0053bc0a6b4fba2ddb4e252 Mon Sep 17 00:00:00 2001 From: "Victor J. Orlikowski" Date: Thu, 20 Sep 2001 14:23:06 +0000 Subject: [PATCH] Clean up a compile warning on AIX. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91094 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 8158b7c57b..3730e5b4e0 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -309,7 +309,7 @@ apr_status_t ap_proxy_http_create_connection(apr_pool_t *p, request_rec *r, /* get a socket - either a keepalive one, or a new one */ new = 1; if ((backend->connection) && (backend->connection->id == c->id)) { - int buffer_len = 1; + apr_size_t buffer_len = 1; char test_buffer[1]; apr_status_t socket_status; apr_int32_t current_timeout; -- 2.50.1