bnicholes 2002/05/31 15:17:42
Modified: file_io/netware filestat.c
Log:
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.
Revision Changes Path
1.11 +0 -2 apr/file_io/netware/filestat.c
Index: filestat.c
===================================================================
RCS file: /home/cvs/apr/file_io/netware/filestat.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- filestat.c 8 May 2002 19:29:33 -0000 1.10
+++ filestat.c 31 May 2002 22:17:42 -0000 1.11
@@ -111,7 +111,6 @@
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 @@
casedFileName = apr_pstrdup(pPool, attrBuf->deName);
}
else
-#endif
{
char *s;
s = strrchr(szFile, '/');