Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8276610D23 for ; Sat, 29 Mar 2014 14:58:58 +0000 (UTC) Received: (qmail 65023 invoked by uid 500); 29 Mar 2014 14:58:56 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 64970 invoked by uid 500); 29 Mar 2014 14:58:55 -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 64963 invoked by uid 99); 29 Mar 2014 14:58:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Mar 2014 14:58:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Sat, 29 Mar 2014 14:58:45 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 36C2123889E1; Sat, 29 Mar 2014 14:58:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1583008 - /httpd/httpd/trunk/modules/filters/mod_ext_filter.c Date: Sat, 29 Mar 2014 14:58:25 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140329145825.36C2123889E1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Sat Mar 29 14:58:24 2014 New Revision: 1583008 URL: http://svn.apache.org/r1583008 Log: s/comment/self-documenting/ Modified: httpd/httpd/trunk/modules/filters/mod_ext_filter.c Modified: httpd/httpd/trunk/modules/filters/mod_ext_filter.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_ext_filter.c?rev=1583008&r1=1583007&r2=1583008&view=diff ============================================================================== --- httpd/httpd/trunk/modules/filters/mod_ext_filter.c (original) +++ httpd/httpd/trunk/modules/filters/mod_ext_filter.c Sat Mar 29 14:58:24 2014 @@ -715,7 +715,7 @@ static apr_status_t pass_data_to_filter( /* Yuck... I'd really like to wait until I can read * or write, but instead I have to sleep and try again */ - apr_sleep(100000); /* 100 milliseconds */ + apr_sleep(apr_time_from_msec(100)); ap_log_rerror(APLOG_MARK, APLOG_TRACE6, 0, f->r, "apr_sleep()"); #endif /* APR_FILES_AS_SOCKETS */ }