diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-07 07:12:44 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-07 07:12:44 +0000 |
commit | 8b3becf06c2d32b3a33d8c071d7788b3b5339f7c (patch) | |
tree | d9349f133103c6c933ecdfbce3e6d215404ecc76 /TSRM | |
parent | 958803655eb54e082547c86ced97606b6202eb7a (diff) | |
download | php-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.h | 2 |
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)) |