summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2005-07-07 07:12:44 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2005-07-07 07:12:44 +0000
commit8b3becf06c2d32b3a33d8c071d7788b3b5339f7c (patch)
treed9349f133103c6c933ecdfbce3e6d215404ecc76 /TSRM
parent958803655eb54e082547c86ced97606b6202eb7a (diff)
downloadphp-git-8b3becf06c2d32b3a33d8c071d7788b3b5339f7c.tar.gz
Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function of NetWare LibC like glob.
-- Kamesh
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_virtual_cwd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index 7e56c029ef..57cda13445 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -70,7 +70,7 @@ typedef unsigned short mode_t;
#include <dirent.h>
#endif
-#define DEFAULT_SLASH '\\'
+#define DEFAULT_SLASH '/'
#define DEFAULT_DIR_SEPARATOR ';'
#define IS_SLASH(c) ((c) == '/' || (c) == '\\')
#define IS_SLASH_P(c) IS_SLASH(*(c))