From: Scott MacVicar Date: Tue, 22 Jul 2008 21:53:53 +0000 (+0000) Subject: Fix windows build error. X-Git-Tag: php-5.3.0alpha1~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d3bfaa01ff7e5ef1f022cb2e4182d0a6347ddb6;p=php Fix windows build error. --- diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 79157b8186..b8b79b27a8 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -302,7 +302,7 @@ PHPAPI char *php_escape_shell_cmd(char *str) #else /* This is Windows specific for enviromental variables */ case '%': - cmd[y++] = ''; + cmd[y++] = ' '; break; #endif case '#': /* This is character-set independent */