hyanantha Tue Mar 1 09:59:38 2005 EDT Modified files: /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.428&r2=1.429&ty=u Index: php-src/ext/standard/string.c diff -u php-src/ext/standard/string.c:1.428 php-src/ext/standard/string.c:1.429 --- php-src/ext/standard/string.c:1.428 Tue Jan 18 10:47:57 2005 +++ php-src/ext/standard/string.c Tue Mar 1 09:59:37 2005 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: string.c,v 1.428 2005/01/18 15:47:57 iliaa Exp $ */ +/* $Id: string.c,v 1.429 2005/03/01 14:59:37 hyanantha Exp $ */ /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */ @@ -1142,7 +1142,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