jwoolley 01/08/23 18:53:45
Modified: file_io/unix filepath.c
Log:
Yep, httpd serves pages again.
Revision Changes Path
1.7 +1 -1 apr/file_io/unix/filepath.c
Index: filepath.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/filepath.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -u -r1.6 -r1.7
--- filepath.c 2001/08/24 01:45:39 1.6
+++ filepath.c 2001/08/24 01:53:45 1.7
@@ -104,7 +104,7 @@
*rootpath = apr_pstrdup(p, "/");
do {
++(*inpath);
- } while (*inpath == '/');
+ } while (**inpath == '/');
return APR_SUCCESS;
}