manoj 99/09/24 14:50:52
Modified: src/lib/apr/include apr_network_io.h Log: APR_ANYADDR was defined to be "APR_ANYADDR", but when it was stored and retrieved from a socket, it would show up as "0.0.0.0". This changes the definition of APR_ANYADDR to "0.0.0.0" to be consistent (and help fix Apache restarts). Revision Changes Path 1.7 +1 -1 apache-2.0/src/lib/apr/include/apr_network_io.h Index: apr_network_io.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_network_io.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -u -r1.6 -r1.7 --- apr_network_io.h 1999/09/18 11:48:14 1.6 +++ apr_network_io.h 1999/09/24 21:50:51 1.7 @@ -77,7 +77,7 @@ #endif #ifndef APR_ANYADDR -#define APR_ANYADDR "ANY_IPADDR" +#define APR_ANYADDR "0.0.0.0" #endif /* Socket option definitions */