diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-26 14:28:14 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-26 14:28:14 +1100 |
commit | 1c13bd8d799ced6e2e8234a1d2409c30e7d67815 (patch) | |
tree | 450dccec500f5e37cfdd3449478142eb74d76beb /ssh-agent.c | |
parent | 5f340065fc047741448e814c7c30018e8012293b (diff) | |
download | openssh-git-1c13bd8d799ced6e2e8234a1d2409c30e7d67815.tar.gz |
- deraadt@cvs.openbsd.org 2006/03/25 18:41:45
[ssh-agent.c]
mark two more signal handlers ARGSUSED
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index c169d226..eb99effd 100644 --- a/ssh-agent.c +++ b/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 @@ -962,6 +962,7 @@ cleanup_exit(int i) _exit(i); } +/*ARGSUSED*/ static void cleanup_handler(int sig) { @@ -969,6 +970,7 @@ cleanup_handler(int sig) _exit(2); } +/*ARGSUSED*/ static void check_parent_exists(int sig) { |