]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
pod_in shouldn't be non-blocking after all
authorJeff Trawick <trawick@apache.org>
Sat, 9 Jun 2001 02:57:46 +0000 (02:57 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 9 Jun 2001 02:57:46 +0000 (02:57 +0000)
Submitted by: Ryan Bloom

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89314 13f79535-47bb-0310-9956-ffa450edef68

server/mpm_common.c

index 28ecd128dac5d9c33608d7d469dc4c459b845699..fa389bea87658f88cf6d6d82f58b770a8273cd9f 100644 (file)
@@ -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;