wrowe 01/07/18 09:56:06
Modified: include apr_portable.h
Log:
Strip the inherit flag from apr_os_sock_make() (what a lousy name)
Revision Changes Path
1.64 +0 -2 apr/include/apr_portable.h
Index: apr_portable.h
===================================================================
RCS file: /home/cvs/apr/include/apr_portable.h,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- apr_portable.h 2001/07/16 16:11:03 1.63
+++ apr_portable.h 2001/07/18 16:56:06 1.64
@@ -321,7 +321,6 @@
* @param apr_sock The new socket that has been set up
* @param os_sock_info The os representation of the socket handle and
* other characteristics of the socket
- * @param inherit Should this socket be inherited by child processes
* @param cont The pool to use
* @deffunc apr_status_t apr_os_sock_make(apr_socket_t **apr_sock,
apr_os_sock_info_t *os_sock_info, apr_pool_t *cont)
* @tip If you only know the descriptor/handle or if it isn't really
@@ -329,7 +328,6 @@
*/
APR_DECLARE(apr_status_t) apr_os_sock_make(apr_socket_t **apr_sock,
apr_os_sock_info_t *os_sock_info,
- int inherit,
apr_pool_t *cont);
/**