summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2004-08-12 06:18:29 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2004-08-12 06:18:29 +0000
commit9b85758613b87c852ea5df232df2db137fca7caa (patch)
treec5206a919cb95aed5d429e935d518926f9db6a7a
parentdabe7fdcd49414b91641b7ef9d0b86607e2a42d5 (diff)
downloadlibapr-9b85758613b87c852ea5df232df2db137fca7caa.tar.gz
This must hit 1.0 - note the ambiguity of ctime.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65302 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_file_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 46db6c25b..7bd31a312 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -133,7 +133,7 @@ typedef struct apr_finfo_t apr_finfo_t;
#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 @@ struct apr_finfo_t {
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;