moriyoshi               Wed Dec 10 01:04:16 2003 EDT

  Modified files:              
    /php-src/ext/standard       string.c 
  Log:
  Fix typo.
  
  
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.404 php-src/ext/standard/string.c:1.405
--- php-src/ext/standard/string.c:1.404 Tue Dec  2 20:31:56 2003
+++ php-src/ext/standard/string.c       Wed Dec 10 01:04:15 2003
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.404 2003/12/03 01:31:56 pollita Exp $ */
+/* $Id: string.c,v 1.405 2003/12/10 06:04:15 moriyoshi Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -1100,7 +1100,7 @@
        while(c>=s) {
                if(*c == '/'
 #ifdef PHP_WIN32
-                  || ( *c == '\\' && !IsDBCSLeadByte(*c-1))
+                  || ( *c == '\\' && !IsDBCSLeadByte(*(c-1)))
 #endif                 
                   ) {
                        c++;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to