diff options
author | Andi Gutmans <andi@php.net> | 2003-12-02 21:12:17 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2003-12-02 21:12:17 +0000 |
commit | 5620f21dd5fc47bb785b52cd9196a63b94c4b2f8 (patch) | |
tree | 61696d7197d35c7f28c29d97ef1bc3546d386dfd /TSRM | |
parent | 23b231d0eb86c3f1ce835f5df3946b1ab35763d9 (diff) | |
download | php-git-5620f21dd5fc47bb785b52cd9196a63b94c4b2f8.tar.gz |
- Uncomment my code which improves Windows behavior of TSRM file paths.
- This will now not work on Windows 95 anymore.
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/tsrm_virtual_cwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 3dbfbfa7fb..0d9fb7197c 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -332,7 +332,7 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func free(tmp); } #endif -#if 0 && defined(TSRM_WIN32) +#if defined(TSRM_WIN32) { char *dummy; char *new_path; |