From: Wez Furlong Date: Fri, 5 Dec 2003 13:48:40 +0000 (+0000) Subject: fix unix build.... X-Git-Tag: php-5.0.0b3RC1~287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c29b17b81e36b7e5ee5f3b7826e4815cb9d2b072;p=php fix unix build.... --- diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index d23bc4076c..9e30383cd1 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -467,11 +467,11 @@ PHP_FUNCTION(proc_open) SECURITY_ATTRIBUTES security; char *command_with_cmd; UINT old_error_mode; - int suppress_errors = 0; #endif php_process_id_t child; struct php_process_handle *proc; int is_persistent = 0; /* TODO: ensure that persistent procs will work */ + int suppress_errors = 0; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "saz|s!a!a!", &command, &command_len, &descriptorspec, &pipes, &cwd, &cwd_len, &environment,