diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:49:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:49:42 +0000 |
commit | f664c99523803169394338e73ca135f9e0747e4c (patch) | |
tree | 2f994841c529b09007609269dbafc91aeb3fc069 /usr.sbin/rip6query | |
parent | c55ddf58f562dd3d0ed78b353331172be9cef96e (diff) |
use volatile sig_atomic_t where possible; simply volatile i other places
Diffstat (limited to 'usr.sbin/rip6query')
-rw-r--r-- | usr.sbin/rip6query/rip6query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rip6query/rip6query.c b/usr.sbin/rip6query/rip6query.c index 61dcceb8a2a..01d10649558 100644 --- a/usr.sbin/rip6query/rip6query.c +++ b/usr.sbin/rip6query/rip6query.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rip6query.c,v 1.4 2001/11/16 07:16:48 itojun Exp $ */ +/* $OpenBSD: rip6query.c,v 1.5 2001/11/17 19:49:40 deraadt Exp $ */ /* $KAME: rip6query.c,v 1.15 2001/11/16 07:01:21 itojun Exp $ */ /* @@ -216,5 +216,5 @@ sigalrm_handler(sig) int sig; { - exit(0); + _exit(0); } |