dmitry          Wed Sep 13 13:03:01 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/sapi/cgi   fastcgi.c 
  Log:
  Fix for bug #38757 (MultiPart Form Uploads fail with FastCGI)
  
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/cgi/fastcgi.c?r1=1.4.2.13.2.9&r2=1.4.2.13.2.10&diff_format=u
Index: php-src/sapi/cgi/fastcgi.c
diff -u php-src/sapi/cgi/fastcgi.c:1.4.2.13.2.9 
php-src/sapi/cgi/fastcgi.c:1.4.2.13.2.10
--- php-src/sapi/cgi/fastcgi.c:1.4.2.13.2.9     Mon Sep 11 07:22:40 2006
+++ php-src/sapi/cgi/fastcgi.c  Wed Sep 13 13:03:01 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: fastcgi.c,v 1.4.2.13.2.9 2006/09/11 07:22:40 dmitry Exp $ */
+/* $Id: fastcgi.c,v 1.4.2.13.2.10 2006/09/13 13:03:01 dmitry Exp $ */
 
 #include "php.h"
 #include "fastcgi.h"
@@ -682,7 +682,7 @@
                                break;
 #else
                                if (req->fd >= 0) {
-                                       struct timeval tv = {1,0};
+                                       struct timeval tv = {5,0};
                                        fd_set set;
 
                                        FD_ZERO(&set);

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

Reply via email to