mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-13 06:02:37 -04:00
1559. [port] named should ignore SIGFSZ.
This commit is contained in:
parent
66c44f5b2e
commit
6c41f035c6
2 changed files with 7 additions and 1 deletions
2
CHANGES
2
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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <config.h>
|
||||
#include <stdarg.h>
|
||||
|
|
@ -30,6 +30,7 @@
|
|||
#include <pwd.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
#include <syslog.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
|
@ -284,6 +285,9 @@ ns_os_init(const char *progname) {
|
|||
#ifdef HAVE_LINUXTHREADS
|
||||
mainpid = getpid();
|
||||
#endif
|
||||
#ifdef SIGXFSZ
|
||||
signal(SIGXFSZ, SIG_IGN);
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue