From 6c41f035c659e755b87c19b82f2df3b8d87e06c8 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 3 Mar 2004 23:07:05 +0000 Subject: [PATCH] 1559. [port] named should ignore SIGFSZ. --- CHANGES | 2 ++ bin/named/unix/os.c | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index a87dfde97a..987dafb598 100644 --- a/CHANGES +++ b/CHANGES @@ -36,6 +36,8 @@ 1561. [bug] It was possible to release the same name twice if named ran out of memory. [RT #10197] +1559. [port] named should ignore SIGFSZ. + 1556. [bug] nsupdate now treats all names as fully qualified. [RT #6427] diff --git a/bin/named/unix/os.c b/bin/named/unix/os.c index 47afade2ab..e1256333b3 100644 --- a/bin/named/unix/os.c +++ b/bin/named/unix/os.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: os.c,v 1.46.2.6 2004/01/07 06:30:44 marka Exp $ */ +/* $Id: os.c,v 1.46.2.7 2004/03/03 23:07:05 marka Exp $ */ #include #include @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -284,6 +285,9 @@ ns_os_init(const char *progname) { #ifdef HAVE_LINUXTHREADS mainpid = getpid(); #endif +#ifdef SIGXFSZ + signal(SIGXFSZ, SIG_IGN); +#endif } void