summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-05-31 22:17:42 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-05-31 22:17:42 +0000
commit4fb0742110f8855d1ae6f65e0be7e7ada58bfd52 (patch)
tree69a4047ae16792da8a4aecd3034006782a6fe9c4 /file_io
parent45d8ede0db74be408621152f3cb6806da3c03b9a (diff)
downloadlibapr-4fb0742110f8855d1ae6f65e0be7e7ada58bfd52.tar.gz
Implemented code that discovers the proper casing of the filename as it exists
on disk. This had to wait until now for an update to our libraries. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63455 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/netware/filestat.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/file_io/netware/filestat.c b/file_io/netware/filestat.c
index a4d746cd1..22b885deb 100644
--- a/file_io/netware/filestat.c
+++ b/file_io/netware/filestat.c
@@ -111,7 +111,6 @@ static void fill_out_finfo(apr_finfo_t *finfo, struct stat *info,
char *case_filename(apr_pool_t *pPool, const char *szFile)
{
char *casedFileName = NULL;
-#ifdef WAIT_TO_IMPLEMENT
char buf[1024];
NXDirAttrWithName_t *attrBuf;
int rc;
@@ -122,7 +121,6 @@ char *case_filename(apr_pool_t *pPool, const char *szFile)
casedFileName = apr_pstrdup(pPool, attrBuf->deName);
}
else
-#endif
{
char *s;
s = strrchr(szFile, '/');