summaryrefslogtreecommitdiffstats
path: root/httpd-2.4.3-r1387633+.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-03-09 11:02:36 +0100
committerRemi Collet <fedora@famillecollet.com>2013-03-09 11:02:36 +0100
commit60d0b8d1d6adb833707a4b3942151036110869fe (patch)
tree6d7f4759fa9d2093750f4dd8c44d8b47e650e5be /httpd-2.4.3-r1387633+.patch
parent2a1474409b6bd5a99433974713020f0a0ff3f46e (diff)
httpd: backport 2.4.4
Diffstat (limited to 'httpd-2.4.3-r1387633+.patch')
-rw-r--r--httpd-2.4.3-r1387633+.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/httpd-2.4.3-r1387633+.patch b/httpd-2.4.3-r1387633+.patch
deleted file mode 100644
index b09b338..0000000
--- a/httpd-2.4.3-r1387633+.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-# ./pullrev.sh 1387633 1392850
-
-http://svn.apache.org/viewvc?view=revision&revision=1387633
-http://svn.apache.org/viewvc?view=revision&revision=1392850
-
---- httpd-2.4.3/server/mpm/prefork/prefork.c
-+++ httpd-2.4.3/server/mpm/prefork/prefork.c
-@@ -564,9 +564,16 @@
-
- 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");
-- clean_child_exit(APEXIT_CHILDSICK);
-+ /* 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);
-+ }
-+ clean_child_exit(0);
- }
-
- lr->accept_func = ap_unixd_accept;