From: Anantha Kesari H Y Date: Thu, 7 Jul 2005 07:12:44 +0000 (+0000) Subject: Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function of NetWare... X-Git-Tag: php-5.1.0b3~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b3becf06c2d32b3a33d8c071d7788b3b5339f7c;p=php Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function of NetWare LibC like glob. -- Kamesh --- 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 #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))