You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2004/08/12 08:18:29 UTC

cvs commit: apr/include apr_file_info.h

wrowe       2004/08/11 23:18:29

  Modified:    include  apr_file_info.h
  Log:
    This must hit 1.0 - note the ambiguity of ctime.
  
  Revision  Changes    Path
  1.48      +2 -2      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.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- apr_file_info.h	25 Jun 2004 15:28:42 -0000	1.47
  +++ apr_file_info.h	12 Aug 2004 06:18:29 -0000	1.48
  @@ -133,7 +133,7 @@
   
   #define APR_FINFO_LINK   0x00000001 /**< Stat the link not the file itself if it is a link */
   #define APR_FINFO_MTIME  0x00000010 /**< Modification Time */
  -#define APR_FINFO_CTIME  0x00000020 /**< Creation Time */
  +#define APR_FINFO_CTIME  0x00000020 /**< Creation or inode-changed time */
   #define APR_FINFO_ATIME  0x00000040 /**< Access Time */
   #define APR_FINFO_SIZE   0x00000100 /**< Size of the file */
   #define APR_FINFO_CSIZE  0x00000200 /**< Storage size consumed by the file */
  @@ -191,7 +191,7 @@
       apr_time_t atime;
       /** The time the file was last modified */
       apr_time_t mtime;
  -    /** The time the file was last changed */
  +    /** The time the file was created, or the inode was last changed */
       apr_time_t ctime;
       /** The pathname of the file (possibly unrooted) */
       const char *fname;