From: Jeff Trawick Date: Sat, 9 Jun 2001 02:57:46 +0000 (+0000) Subject: pod_in shouldn't be non-blocking after all X-Git-Tag: 2.0.19~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=107761ea76067b97cd60b0110f18de8871f9e562;p=thirdparty%2Fapache%2Fhttpd.git pod_in shouldn't be non-blocking after all Submitted by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89314 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 28ecd128dac..fa389bea876 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -347,7 +347,6 @@ AP_DECLARE(apr_status_t) ap_mpm_pod_open(apr_pool_t *p, ap_pod_t **pod) *pod = apr_palloc(p, sizeof(**pod)); rv = apr_file_pipe_create(&((*pod)->pod_in), &((*pod)->pod_out), p); - apr_file_pipe_timeout_set((*pod)->pod_in, 0); apr_file_pipe_timeout_set((*pod)->pod_out, 0); (*pod)->p = p; return rv;