diff options
author | Andi Gutmans <andi@php.net> | 2000-08-20 19:56:24 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-08-20 19:56:24 +0000 |
commit | c7999595688422de96ed208c995cceca4d165c0c (patch) | |
tree | 40eaf25ad6fec44c7fb250783158d617ea287e62 /main/main.c | |
parent | 892e949196e17184f31b067c3db2feb83fa08ca1 (diff) | |
download | php-git-c7999595688422de96ed208c995cceca4d165c0c.tar.gz |
- Change PHP_SEPARATOR to PHP_DIR_SEPARATOR
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index c239fa1f72..93ff276093 100644 --- a/main/main.c +++ b/main/main.c @@ -1148,7 +1148,7 @@ PHPAPI void php_execute_script(zend_file_handle *primary_file CLS_DC ELS_DC PLS_ && primary_file->filename) { char *filename; - filename = strrchr(primary_file->filename, PHP_SEPARATOR); + filename = strrchr(primary_file->filename, PHP_DIR_SEPARATOR); if (filename) { filename++; |