From 955466e47921b1ba7342959db3dab60a14b9a843 Mon Sep 17 00:00:00 2001 From: Scott MacVicar Date: Tue, 22 Jul 2008 21:56:25 +0000 Subject: [PATCH] MFB: Fix windows build error. --- ext/standard/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 6cf33a7493..b22e6a3da9 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -287,7 +287,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 */ -- 2.40.0