From 62dafff3a0406af9f319dc8c60a24b1e5218ddfe Mon Sep 17 00:00:00 2001 From: Karl Ramm Date: Tue, 24 Mar 2009 03:59:25 +0000 Subject: don't set a nonexistent handler for SIGEMT --- server/main.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'server/main.c') diff --git a/server/main.c b/server/main.c index 12008bc..27b33c1 100644 --- a/server/main.c +++ b/server/main.c @@ -296,11 +296,6 @@ main(int argc, action.sa_handler = sig_dump_db; sigaction(SIGFPE, &action, NULL); -#ifdef SIGEMT - action.sa_handler = sig_dump_strings; - sigaction(SIGEMT, &action, NULL); -#endif - action.sa_handler = reset; sigaction(SIGHUP, &action, NULL); #else /* !posix */ @@ -310,9 +305,6 @@ main(int argc, signal(SIGUSR2, dbug_off); signal(SIGCHLD, reap); signal(SIGFPE, sig_dump_db); -#ifdef SIGEMT - signal(SIGEMT, sig_dump_strings); -#endif signal(SIGHUP, reset); #endif /* _POSIX_VERSION */ -- cgit v1.2.3