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

cvs commit: apr/include/arch/unix inherit.h

rbb         01/07/16 16:35:14

  Modified:    file_io/unix open.c
               include/arch/unix inherit.h
  Log:
  Fix some compile breaks
  
  Revision  Changes    Path
  1.81      +1 -1      apr/file_io/unix/open.c
  
  Index: open.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/unix/open.c,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- open.c	2001/07/16 20:53:53	1.80
  +++ open.c	2001/07/16 23:35:14	1.81
  @@ -227,7 +227,7 @@
       /* buffer already NULL; 
        * don't get a lock (only for buffered files) 
        */
  -    (*file)->inherit = 1;
  +    (*file)->flags = APR_INHERIT;
       return APR_SUCCESS;
   }    
   
  
  
  
  1.2       +1 -1      apr/include/arch/unix/inherit.h
  
  Index: inherit.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/unix/inherit.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- inherit.h	2001/07/16 20:49:57	1.1
  +++ inherit.h	2001/07/16 23:35:14	1.2
  @@ -73,7 +73,7 @@
       if (name->flag & APR_INHERIT) {                                 \
           name->flag &= ~APR_INHERIT;                                 \
           apr_pool_cleanup_kill(name->pool, (void *)name,             \
  -                              NULL, cleanup);                       \
  +                              cleanup);                             \
       }                                                               \
   }