You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Ian Holsman <ia...@cnet.com> on 2001/07/17 04:50:45 UTC

Re: cvs commit: apr/network_io/unix sockets.c

Yep...
That fixed it.

Thanks
rbb@apache.org wrote:

>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;
>   } 
>  
>  
>  
>