]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
This type fix is needed to quiet type mismatch warnings, nelts is also an int
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 5 Oct 2010 17:47:27 +0000 (17:47 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 5 Oct 2010 17:47:27 +0000 (17:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1004733 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_scgi.c

index e152c277b8470dca8af11356b6b822addcb125d2..b16fe153ef50410eb65afb2fe8d9cae1be4fc927 100644 (file)
@@ -246,7 +246,8 @@ static int send_headers(request_rec *r, proxy_conn_rec *conn)
     const char *ns_len;
     const apr_array_header_t *env_table;
     const apr_table_entry_t *env;
-    apr_size_t j, len, bodylen_size;
+    int j;\r
+    apr_size_t len, bodylen_size;
     apr_size_t headerlen =   sizeof(CONTENT_LENGTH)
                            + sizeof(SCGI_MAGIC)
                            + sizeof(SCGI_PROTOCOL_VERSION);