summaryrefslogtreecommitdiffstats
path: root/usr.sbin/authpf
diff options
context:
space:
mode:
authordhartmei <dhartmei@openbsd.org>2006-08-09 16:21:39 +0000
committerdhartmei <dhartmei@openbsd.org>2006-08-09 16:21:39 +0000
commit19338c8e6f73dda50f768ad529e7d01806a7d967 (patch)
tree1e73bdd9e2eb10052a3ba26df08ecad292e460eb /usr.sbin/authpf
parentadd sys/timeout.h (diff)
downloadwireguard-openbsd-19338c8e6f73dda50f768ad529e7d01806a7d967.tar.xz
wireguard-openbsd-19338c8e6f73dda50f768ad529e7d01806a7d967.zip
handle SIGQUIT instead of SIGSTOP, from Stefan Krah
Diffstat (limited to 'usr.sbin/authpf')
-rw-r--r--usr.sbin/authpf/authpf.c4
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);