summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2004-05-22 07:37:42 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2004-05-22 07:37:42 +0000
commitcf357d0d2fd70fc778bf8e23f8fed064a6ddcdcd (patch)
tree7f6f948727e8b998ca64a6a3acd40506da3a1aab
parent8713a76df7315739b941a4c9a303cf7a7ca42f87 (diff)
downloadlibapr-cf357d0d2fd70fc778bf8e23f8fed064a6ddcdcd.tar.gz
OS/2: Include APR_FINFO_LINK in the valid flags by default. As OS/2 doesn't
have sym-links we can be sure the filename isn't one. Backport of fix to HEAD done a few months ago (r1.39). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@65113 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/os2/filestat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/os2/filestat.c b/file_io/os2/filestat.c
index 80f5b00e0..f3d39a137 100644
--- a/file_io/os2/filestat.c
+++ b/file_io/os2/filestat.c
@@ -46,7 +46,7 @@ static void FS3_to_finfo(apr_finfo_t *finfo, FILESTATUS3 *fstatus)
fstatus->ftimeCreation );
finfo->valid = APR_FINFO_TYPE | APR_FINFO_PROT | APR_FINFO_SIZE
| APR_FINFO_CSIZE | APR_FINFO_MTIME
- | APR_FINFO_CTIME | APR_FINFO_ATIME;
+ | APR_FINFO_CTIME | APR_FINFO_ATIME | APR_FINFO_LINK;
}