diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2007-12-04 14:52:55 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2007-12-04 14:52:55 +0000 |
commit | 147e768941869cfc82d845c13e3ca8c63bd80fb9 (patch) | |
tree | 7939d4fe497dfc5fd5b86cb0a778c169f3b9428a /usr.sbin/ntpd | |
parent | f39da937eb08670d8bf022bf2ff769ef3b1a2368 (diff) |
revert SIGQUIT catching; requested by deraadt
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/ntpd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/ntpd.c b/usr.sbin/ntpd/ntpd.c index 13f23ef5ecf..c9ee4b0bce8 100644 --- a/usr.sbin/ntpd/ntpd.c +++ b/usr.sbin/ntpd/ntpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.c,v 1.54 2007/12/04 11:06:49 fgsch Exp $ */ +/* $OpenBSD: ntpd.c,v 1.55 2007/12/04 14:52:54 fgsch Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -56,7 +56,6 @@ sighdlr(int sig) switch (sig) { case SIGTERM: case SIGINT: - case SIGQUIT: quit = 1; break; case SIGCHLD: @@ -163,7 +162,6 @@ main(int argc, char *argv[]) signal(SIGTERM, sighdlr); signal(SIGINT, sighdlr); - signal(SIGQUIT, sighdlr); signal(SIGHUP, sighdlr); close(pipe_chld[1]); |