diff options
author | Pierre Joye <pajoye@php.net> | 2009-08-27 14:45:41 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-08-27 14:45:41 +0000 |
commit | 5c7b1336488dcd331deb6cd3edea73a42bd4caa9 (patch) | |
tree | f9792079486d8393c410013f086c4b94fc09a214 | |
parent | 149914f6444318b938b1182f683bf4a2765a905e (diff) | |
download | php-git-5c7b1336488dcd331deb6cd3edea73a42bd4caa9.tar.gz |
- fix VC6 build
-rw-r--r-- | ext/standard/link_win32.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/standard/link_win32.c b/ext/standard/link_win32.c index bd37aab306..bedc781fd0 100644 --- a/ext/standard/link_win32.c +++ b/ext/standard/link_win32.c @@ -54,6 +54,10 @@ TODO: #define VOLUME_NAME_NT 0x2 #endif +#ifndef VOLUME_NAME_DOS +#define VOLUME_NAME_DOS 0x0 +#endif + /* {{{ proto string readlink(string filename) Return the target of a symbolic link */ PHP_FUNCTION(readlink) @@ -119,7 +123,7 @@ PHP_FUNCTION(readlink) if(dwRet > 4) { /* Skip first 4 characters if they are "\??\" */ - if(Path[0] == '\\' && Path[0] == '\\' && Path[1] == '?' && Path[2] == '?' && Path[3] == '\\') { + if(Path[0] == '\\' && Path[1] == '\\' && Path[2] == '?' && Path[3] == '\\') { RETURN_STRING(Path + 4, 1); } } else { |