Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 65420 invoked by uid 500); 24 Jul 2001 12:39:39 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 65409 invoked from network); 24 Jul 2001 12:39:38 -0000 Date: 24 Jul 2001 12:36:57 -0000 Message-ID: <20010724123657.51996.qmail@icarus.apache.org> From: bjh@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/file_io/os2 open.c X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N 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 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)