bjh 01/07/24 05:36:57
Modified: file_io/os2 open.c Log: OS/2: Fix inherit stuff Revision Changes Path 1.44 +3 -2 apr/file_io/os2/open.c Index: open.c =================================================================== RCS file: /home/cvs/apr/file_io/os2/open.c,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- open.c 2001/07/18 19:12:40 1.43 +++ open.c 2001/07/24 12:36:56 1.44 @@ -57,6 +57,7 @@ #include "apr_lib.h" #include "apr_portable.h" #include "apr_strings.h" +#include "inherit.h" #include <string.h> apr_status_t apr_file_cleanup(void *thefile) @@ -265,7 +266,7 @@ APR_POOL_IMPLEMENT_ACCESSOR_X(file, cntxt); -APR_IMPLEMENT_SET_INHERIT(socket, inherit, cntxt, socket_cleanup) +APR_IMPLEMENT_SET_INHERIT(file, flags, cntxt, apr_file_cleanup) -APR_IMPLEMENT_UNSET_INHERIT(socket, inherit, cntxt, socket_cleanup) +APR_IMPLEMENT_UNSET_INHERIT(file, flags, cntxt, apr_file_cleanup)
