From ea8928fb799b042740b834100683ff3735575a84 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 24 Mar 2012 08:21:04 +0100 Subject: httpd: remove all --- httpd-2.2.11-corelimit.patch | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 httpd-2.2.11-corelimit.patch (limited to 'httpd-2.2.11-corelimit.patch') diff --git a/httpd-2.2.11-corelimit.patch b/httpd-2.2.11-corelimit.patch deleted file mode 100644 index ea9f857..0000000 --- a/httpd-2.2.11-corelimit.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- httpd-2.2.11/server/core.c.corelimit -+++ httpd-2.2.11/server/core.c -@@ -3777,6 +3779,25 @@ static int core_post_config(apr_pool_t * - - set_banner(pconf); - ap_setup_make_content_type(pconf); -+ -+#ifdef RLIMIT_CORE -+ if (ap_coredumpdir_configured) { -+ struct rlimit lim; -+ -+ if (getrlimit(RLIMIT_CORE, &lim) == 0 && lim.rlim_cur == 0) { -+ lim.rlim_cur = lim.rlim_max; -+ if (setrlimit(RLIMIT_CORE, &lim) == 0) { -+ ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, NULL, -+ "core dump file size limit raised to %lu bytes", -+ lim.rlim_cur); -+ } else { -+ ap_log_error(APLOG_MARK, APLOG_NOTICE, errno, NULL, -+ "core dump file size is zero, setrlimit failed"); -+ } -+ } -+ } -+#endif -+ - return OK; - } - -- cgit