scottmac                Tue Jul 22 21:56:25 2008 UTC

  Modified files:              
    /php-src/ext/standard       exec.c 
  Log:
  MFB: Fix windows build error.
  
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/exec.c?r1=1.134&r2=1.135&diff_format=u
Index: php-src/ext/standard/exec.c
diff -u php-src/ext/standard/exec.c:1.134 php-src/ext/standard/exec.c:1.135
--- php-src/ext/standard/exec.c:1.134   Tue Jul 22 16:18:37 2008
+++ php-src/ext/standard/exec.c Tue Jul 22 21:56:25 2008
@@ -16,7 +16,7 @@
    |         Ilia Alshanetsky <[EMAIL PROTECTED]>                             |
    +----------------------------------------------------------------------+
  */
-/* $Id: exec.c,v 1.134 2008/07/22 16:18:37 scottmac Exp $ */
+/* $Id: exec.c,v 1.135 2008/07/22 21:56:25 scottmac Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -287,7 +287,7 @@
 #else
                        /* This is Windows specific for enviromental variables 
*/
                        case '%':
-                               cmd[y++] = '';
+                               cmd[y++] = ' ';
                                break;
 #endif
                        case '#': /* This is character-set independent */



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to