mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2003/09/19 11:30:39
[ssh-keyscan.c] avoid fatal_cleanup, just call exit(); ok deraadt
This commit is contained in:
parent
6fa8abd58b
commit
3d32622171
|
@ -55,6 +55,9 @@
|
||||||
- markus@cvs.openbsd.org 2003/09/19 11:29:40
|
- markus@cvs.openbsd.org 2003/09/19 11:29:40
|
||||||
[ssh-agent.c]
|
[ssh-agent.c]
|
||||||
provide a ssh-agent specific fatal() function; ok deraadt
|
provide a ssh-agent specific fatal() function; ok deraadt
|
||||||
|
- markus@cvs.openbsd.org 2003/09/19 11:30:39
|
||||||
|
[ssh-keyscan.c]
|
||||||
|
avoid fatal_cleanup, just call exit(); ok deraadt
|
||||||
|
|
||||||
20030919
|
20030919
|
||||||
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
|
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
|
||||||
|
@ -1191,4 +1194,4 @@
|
||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3031 2003/09/22 11:10:21 dtucker Exp $
|
$Id: ChangeLog,v 1.3032 2003/09/22 11:11:20 dtucker Exp $
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: ssh-keyscan.c,v 1.44 2003/06/28 16:23:06 deraadt Exp $");
|
RCSID("$OpenBSD: ssh-keyscan.c,v 1.45 2003/09/19 11:30:39 markus Exp $");
|
||||||
|
|
||||||
#include "openbsd-compat/sys-queue.h"
|
#include "openbsd-compat/sys-queue.h"
|
||||||
|
|
||||||
|
@ -675,7 +675,7 @@ fatal(const char *fmt,...)
|
||||||
if (nonfatal_fatal)
|
if (nonfatal_fatal)
|
||||||
longjmp(kexjmp, -1);
|
longjmp(kexjmp, -1);
|
||||||
else
|
else
|
||||||
fatal_cleanup();
|
exit(255);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue