[ssh-agent.c]
     mark two more signal handlers ARGSUSED
This commit is contained in:
Damien Miller 2006-03-26 14:28:14 +11:00
parent 5f340065fc
commit 1c13bd8d79
2 changed files with 7 additions and 2 deletions

View File

@ -162,6 +162,9 @@
- deraadt@cvs.openbsd.org 2006/03/25 18:40:14
[ssh-keygen.c]
cast strtonum() result to right type
- deraadt@cvs.openbsd.org 2006/03/25 18:41:45
[ssh-agent.c]
mark two more signal handlers ARGSUSED
20060325
- OpenBSD CVS Sync
@ -4419,4 +4422,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4281 2006/03/26 03:27:57 djm Exp $
$Id: ChangeLog,v 1.4282 2006/03/26 03:28:14 djm Exp $

View File

@ -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)
{