rbb 00/01/10 08:39:57
Modified: src/lib/apr/file_io/unix filestat.c
Log:
Cleanup small bug in new filetype_from_mode, we just need to make sure
we return the value we set. This makes the new code work properly on Unix.
Revision Changes Path
1.11 +1 -0 apache-2.0/src/lib/apr/file_io/unix/filestat.c
Index: filestat.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/unix/filestat.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- filestat.c 2000/01/10 15:35:47 1.10
+++ filestat.c 2000/01/10 16:39:56 1.11
@@ -78,6 +78,7 @@
if (S_ISSOCK(mode))
type = APR_SOCK;
#endif
+ return type;
}
/* ***APRDOC********************************************************