From a28d244176270bc2881b6d48f9c41d3cb73108e4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 20 Sep 2012 08:30:41 +0200 Subject: httpd: sync with rawhide --- httpd-2.4.2-r1387633.patch | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 httpd-2.4.2-r1387633.patch (limited to 'httpd-2.4.2-r1387633.patch') diff --git a/httpd-2.4.2-r1387633.patch b/httpd-2.4.2-r1387633.patch new file mode 100644 index 0000000..3fc0143 --- /dev/null +++ b/httpd-2.4.2-r1387633.patch @@ -0,0 +1,23 @@ +# ./pullrev.sh 1387633 + +http://svn.apache.org/viewvc?view=revision&revision=1387633 + +--- httpd-2.4.2/server/mpm/prefork/prefork.c ++++ httpd-2.4.2/server/mpm/prefork/prefork.c +@@ -564,8 +564,14 @@ + + status = apr_pollset_add(pollset, &pfd); + if (status != APR_SUCCESS) { +- ap_log_error(APLOG_MARK, APLOG_EMERG, status, ap_server_conf, APLOGNO(00157) +- "Couldn't add listener to pollset; check system or user limits"); ++ /* If the child processed a SIGWINCH before setting up the ++ * pollset, this error path is expected and harmless, ++ * since the listener fd was already closed; so don't ++ * pollute the logs in that case. */ ++ if (!die_now) { ++ ap_log_error(APLOG_MARK, APLOG_EMERG, status, ap_server_conf, APLOGNO(00157) ++ "Couldn't add listener to pollset; check system or user limits"); ++ } + clean_child_exit(APEXIT_CHILDSICK); + } + -- cgit