summaryrefslogtreecommitdiffstats
path: root/httpd-2.0.40-xfsz.patch
diff options
context:
space:
mode:
Diffstat (limited to 'httpd-2.0.40-xfsz.patch')
-rw-r--r--httpd-2.0.40-xfsz.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/httpd-2.0.40-xfsz.patch b/httpd-2.0.40-xfsz.patch
deleted file mode 100644
index 2af7384..0000000
--- a/httpd-2.0.40-xfsz.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-
-Set SIGXFSZ to be ignored, so a write() beyond 2gb will fail with
-E2BIG rather than killing the process
-
-Upstream-HEAD: needed
-Upstream-2.0: omit
-Upstream-Status: Obsoleted by proper LFS support in APR, do it anyway
-Upstream-PR: 13511
-
---- ./server/mpm/prefork/prefork.c.xfsz Wed Jul 17 22:39:55 2002
-+++ ./server/mpm/prefork/prefork.c Mon Aug 26 15:40:24 2002
-@@ -461,7 +461,7 @@
- ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXCPU)");
- #endif
- #ifdef SIGXFSZ
-- sa.sa_handler = SIG_DFL;
-+ sa.sa_handler = SIG_IGN;
- if (sigaction(SIGXFSZ, &sa, NULL) < 0)
- ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXFSZ)");
- #endif