From c29b17b81e36b7e5ee5f3b7826e4815cb9d2b072 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 5 Dec 2003 13:48:40 +0000 Subject: [PATCH] fix unix build.... --- ext/standard/proc_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.50.1