diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2006-08-09 16:21:40 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2006-08-09 16:21:40 +0000 |
commit | 6ca1829f8513eb8063d75baa1c32aab420bc8970 (patch) | |
tree | 11045d4c0e2fd093b63e0245e2034105dd467cd8 /usr.sbin/authpf | |
parent | aab4a6e250b535f624fda7441efb31e1f6569c14 (diff) |
handle SIGQUIT instead of SIGSTOP, from Stefan Krah
Diffstat (limited to 'usr.sbin/authpf')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 1c648860cc8..c53949f315a 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.98 2006/03/17 22:00:27 deraadt Exp $ */ +/* $OpenBSD: authpf.c,v 1.99 2006/08/09 16:21:39 dhartmei Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -308,7 +308,7 @@ main(int argc, char *argv[]) signal(SIGALRM, need_death); signal(SIGPIPE, need_death); signal(SIGHUP, need_death); - signal(SIGSTOP, need_death); + signal(SIGQUIT, need_death); signal(SIGTSTP, need_death); while (1) { printf("\r\nHello %s. ", luser); |