wrowe 01/10/10 11:09:41
Modified: file_io/win32 filepath.c
Log:
Fix minor typo
Revision Changes Path
1.17 +1 -1 apr/file_io/win32/filepath.c
Index: filepath.c
===================================================================
RCS file: /home/cvs/apr/file_io/win32/filepath.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- filepath.c 2001/10/10 18:03:07 1.16
+++ filepath.c 2001/10/10 18:09:41 1.17
@@ -343,7 +343,7 @@
while (**inpath == '/' || **inpath == '\\')
++*inpath;
if (!(flags & APR_FILEPATH_TRUENAME))
- newpath[2] = testpath[0];
+ newpath[2] = testpath[2];
*rootpath = newpath;
return APR_SUCCESS;
}
|