rbb 01/07/16 16:43:22
Modified: network_io/unix sockets.c
Log:
Fix a compile break in sockets.c
Revision Changes Path
1.82 +1 -1 apr/network_io/unix/sockets.c
Index: sockets.c
===================================================================
RCS file: /home/cvs/apr/network_io/unix/sockets.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- sockets.c 2001/07/16 20:49:57 1.81
+++ sockets.c 2001/07/16 23:43:21 1.82
@@ -162,7 +162,7 @@
(*new)->timeout = -1;
(*new)->inherit = inherit;
apr_pool_cleanup_register((*new)->cntxt, (void *)(*new), socket_cleanup,
- (*new)->inherit & APR_INHERIT)
+ ((*new)->inherit & APR_INHERIT)
? apr_pool_cleanup_null : socket_cleanup);
return APR_SUCCESS;
}