diff options
author | 2006-03-25 18:41:45 +0000 | |
---|---|---|
committer | 2006-03-25 18:41:45 +0000 | |
commit | 3d9fc5288c12e3826f020e51ebf33452af439661 (patch) | |
tree | ccf0345c2a67a976571ee5717820922d0e353c7e /usr.bin/ssh/ssh-agent.c | |
parent | cast strtonum() result to right type (diff) | |
download | wireguard-openbsd-3d9fc5288c12e3826f020e51ebf33452af439661.tar.xz wireguard-openbsd-3d9fc5288c12e3826f020e51ebf33452af439661.zip |
mark two more signal handlers ARGSUSED
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index e541bed27d3..df0ea22cc8c 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.134 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.135 2006/03/25 18:41:45 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -954,6 +954,7 @@ cleanup_exit(int i) _exit(i); } +/*ARGSUSED*/ static void cleanup_handler(int sig) { @@ -961,6 +962,7 @@ cleanup_handler(int sig) _exit(2); } +/*ARGSUSED*/ static void check_parent_exists(int sig) { |