summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2003-11-19 12:21:13 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2003-11-19 12:21:13 +0000
commitf970cefaf267db2dae48b3462e5e1c60752823a7 (patch)
tree949fec8a3a440f75676343f88440d03405760ba6
parent72e4bcd1d20bb3780234832392d44d529024c973 (diff)
downloadlibapr-f970cefaf267db2dae48b3462e5e1c60752823a7.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. This keeps the call to apr_stat() in apr_filepath_merge() happy instead of getting APR_INCOMPLETE. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64775 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 5da100f83..b2bab517b 100644
--- a/file_io/os2/filestat.c
+++ b/file_io/os2/filestat.c
@@ -85,7 +85,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;
}