You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2021/09/05 08:31:04 UTC

svn commit: r1892921 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

Author: jailletc36
Date: Sun Sep  5 08:31:04 2021
New Revision: 1892921

URL: http://svn.apache.org/viewvc?rev=1892921&view=rev
Log:
Fix a compilation error in the configuration where this is compiled.

Unless I missed something, it is broken since r1516930 (Aug 23 2013).

So no-one has compiled this for more than 8 years.
Sounds like dead code.

Modified:
    httpd/httpd/trunk/modules/proxy/proxy_util.c

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1892921&r1=1892920&r2=1892921&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Sun Sep  5 08:31:04 2021
@@ -2831,7 +2831,7 @@ PROXY_DECLARE(int) ap_proxy_is_socket_co
 
 }
 #else
-PROXY_DECLARE(int) ap_proxy_is_socket_connected(apr_socket_t *socket)
+PROXY_DECLARE(int) ap_proxy_is_socket_connected(apr_socket_t *sock)
 
 {
     apr_size_t buffer_len = 1;