From: Pierre Joye Date: Thu, 27 Aug 2009 14:45:41 +0000 (+0000) Subject: - fix VC6 build X-Git-Tag: php-5.4.0alpha1~191^2~2736 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c7b1336488dcd331deb6cd3edea73a42bd4caa9;p=php - fix VC6 build --- 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 {