hyanantha Tue Mar 1 10:01:08 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src/ext/standard string.c
Log:
NetWare allows directory seperator as \ and /
http://cvs.php.net/diff.php/php-src/ext/standard/string.c?r1=1.420.2.5&r2=1.420.2.6&ty=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.420.2.5
php-src/ext/standard/string.c:1.420.2.6
--- php-src/ext/standard/string.c:1.420.2.5 Tue Jan 18 10:48:39 2005
+++ php-src/ext/standard/string.c Tue Mar 1 10:01:08 2005
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.420.2.5 2005/01/18 15:48:39 iliaa Exp $ */
+/* $Id: string.c,v 1.420.2.6 2005/03/01 15:01:08 hyanantha Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -1090,7 +1090,7 @@
case 0:
goto quit_loop;
case 1:
-#ifdef PHP_WIN32
+#if defined(PHP_WIN32) || defined(NETWARE)
if (*c == '/' || *c == '\\') {
#else
if (*c == '/') {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php