Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 5411 invoked from network); 12 Aug 2010 21:29:54 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Aug 2010 21:29:54 -0000 Received: (qmail 80968 invoked by uid 500); 12 Aug 2010 21:29:54 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 80849 invoked by uid 500); 12 Aug 2010 21:29:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 80842 invoked by uid 99); 12 Aug 2010 21:29:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 21:29:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 21:29:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 141292388903; Thu, 12 Aug 2010 21:28:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r984985 - /httpd/httpd/trunk/modules/filters/mod_reqtimeout.c Date: Thu, 12 Aug 2010 21:28:33 -0000 To: cvs@httpd.apache.org From: sf@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100812212833.141292388903@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sf Date: Thu Aug 12 21:28:32 2010 New Revision: 984985 URL: http://svn.apache.org/viewvc?rev=984985&view=rev Log: Revert part of r983116: Don't break the loop if rv is EAGAIN Modified: httpd/httpd/trunk/modules/filters/mod_reqtimeout.c Modified: httpd/httpd/trunk/modules/filters/mod_reqtimeout.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_reqtimeout.c?rev=984985&r1=984984&r2=984985&view=diff ============================================================================== --- httpd/httpd/trunk/modules/filters/mod_reqtimeout.c (original) +++ httpd/httpd/trunk/modules/filters/mod_reqtimeout.c Thu Aug 12 21:28:32 2010 @@ -190,7 +190,7 @@ static apr_status_t reqtimeout_filter(ap #endif rv = ap_get_brigade(f->next, bb, AP_MODE_GETLINE, APR_NONBLOCK_READ, remaining); - if (rv != APR_SUCCESS) { + if (rv != APR_SUCCESS && !APR_STATUS_IS_EAGAIN(rv)) { break; }