wrowe       01/01/31 14:41:19

  Modified:    include  apr_file_info.h
  Log:
    Absolutely explicit that finfo.filetype APR_NOFILE is 0 (or false).
  
  Revision  Changes    Path
  1.12      +1 -1      apr/include/apr_file_info.h
  
  Index: apr_file_info.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_file_info.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- apr_file_info.h   2001/01/31 20:01:16     1.11
  +++ apr_file_info.h   2001/01/31 22:41:17     1.12
  @@ -74,7 +74,7 @@
    */
   
   typedef enum {
  -    APR_NOFILE,         /* the file exists, but APR doesn't know its type */
  +    APR_NOFILE = 0,     /* the file exists, but APR doesn't know its type */
       APR_REG,            /* a regular file */
       APR_DIR,            /* a directory */
       APR_CHR,            /* a character device */
  
  
  

Reply via email to