diff options
author | foobar <sniper@php.net> | 2005-04-28 14:24:21 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-28 14:24:21 +0000 |
commit | fda8417776924d588445958da45c79519e1a60b8 (patch) | |
tree | 21980f802bd2e615c024f4c8712599f32556ab5f | |
parent | 05febcfc9aae17e401bb5191741cad280677f4cf (diff) | |
download | php-git-fda8417776924d588445958da45c79519e1a60b8.tar.gz |
MFH
-rw-r--r-- | sapi/cgi/cgi_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index be0faa0f69..b655058558 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -482,7 +482,7 @@ static void sapi_cgi_register_variables(zval *track_vars_array TSRMLS_DC) static void sapi_cgi_log_message(char *message) { #if PHP_FASTCGI - int logging = 1; + long logging = 1; TSRMLS_FETCH(); if (cfg_get_long("fastcgi.logging", &logging) == FAILURE) { @@ -976,7 +976,7 @@ int main(int argc, char *argv[]) int fcgi_fd = 0; FCGX_Request request; #ifdef PHP_WIN32 - int impersonate = 0; + long impersonate = 0; #else int status = 0; #endif |