You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2001/07/24 14:36:57 UTC

cvs commit: apr/file_io/os2 open.c

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)
   
  
  
  

Re: cvs commit: apr/file_io/os2 open.c

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
Outch, I tried :(  Thanks for straightening.

Bill

----- Original Message ----- 
From: <bj...@apache.org>
To: <ap...@apache.org>
Sent: Tuesday, July 24, 2001 7:36 AM
Subject: cvs commit: apr/file_io/os2 open.c


> bjh         01/07/24 05:36:57
> 
>   Modified:    file_io/os2 open.c
>   Log:
>   OS/2: Fix inherit stuff