From: Dmitry Stogov Date: Wed, 13 Sep 2006 13:03:14 +0000 (+0000) Subject: Fix for bug #38757 (MultiPart Form Uploads fail with FastCGI) X-Git-Tag: RELEASE_1_0_0RC1~1685 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73d53309c3040b6d4cb9755a4803205fd470300a;p=php Fix for bug #38757 (MultiPart Form Uploads fail with FastCGI) --- diff --git a/sapi/cgi/fastcgi.c b/sapi/cgi/fastcgi.c index 4a2a73623d..cd38e584d7 100644 --- a/sapi/cgi/fastcgi.c +++ b/sapi/cgi/fastcgi.c @@ -682,7 +682,7 @@ int fcgi_accept_request(fcgi_request *req) break; #else if (req->fd >= 0) { - struct timeval tv = {1,0}; + struct timeval tv = {5,0}; fd_set set; FD_ZERO(&set);