From a61bc186716b7b58415bd4b139500ab93dab7fed Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 23 Oct 2006 16:07:40 +0000 Subject: [PATCH] fix typo that breaks compilation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@467017 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_ajp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index d8bbc2070e..92e5c51ada 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -142,7 +142,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, if (maxsize > 65536) maxsize = 65536; if (maxsize%1024) - maxize = ((maxsize/1024) + 1 ) * 1024; + maxsize = ((maxsize/1024) + 1 ) * 1024; /* * Send the AJP request to the remote server -- 2.49.0