diff options
author | foobar <sniper@php.net> | 2002-11-15 07:21:33 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-11-15 07:21:33 +0000 |
commit | dadfd6e94a08a27074dfe509e134c773e887089d (patch) | |
tree | 0eb80391cdbdd04c1ac51cd6a3d5b99ac06b755d | |
parent | fb20eae7fc81088f3d8e8b3f4f5ee497066d1227 (diff) | |
download | php-git-dadfd6e94a08a27074dfe509e134c773e887089d.tar.gz |
ws fix
-rw-r--r-- | ext/standard/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/dir.c b/ext/standard/dir.c index d0e8c042b5..73374d0434 100644 --- a/ext/standard/dir.c +++ b/ext/standard/dir.c @@ -131,8 +131,8 @@ PHP_MINIT_FUNCTION(dir) dirsep_str[0] = DEFAULT_SLASH; dirsep_str[1] = '\0'; REGISTER_STRING_CONSTANT("DIRECTORY_SEPARATOR", dirsep_str, CONST_CS|CONST_PERSISTENT); - pathsep_str[0] = ZEND_PATHS_SEPARATOR; - pathsep_str[1] = '\0'; + pathsep_str[0] = ZEND_PATHS_SEPARATOR; + pathsep_str[1] = '\0'; REGISTER_STRING_CONSTANT("PATH_SEPARATOR", pathsep_str, CONST_CS|CONST_PERSISTENT); #ifdef HAVE_GLOB |