diff options
author | Darren Tucker <dtucker@zip.com.au> | 2003-09-22 13:11:20 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2003-09-22 13:11:20 +0200 |
commit | 3d326221714451b616b82744d38af484e718b49b (patch) | |
tree | aeba2b902b1d04e41dfef4c9e0929eb1bbbcc013 /ssh-keyscan.c | |
parent | - markus@cvs.openbsd.org 2003/09/19 11:29:40 (diff) | |
download | openssh-3d326221714451b616b82744d38af484e718b49b.tar.xz openssh-3d326221714451b616b82744d38af484e718b49b.zip |
- markus@cvs.openbsd.org 2003/09/19 11:30:39
[ssh-keyscan.c]
avoid fatal_cleanup, just call exit(); ok deraadt
Diffstat (limited to '')
-rw-r--r-- | ssh-keyscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 9fa8aaebc..9506ec196 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c @@ -7,7 +7,7 @@ */ #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" @@ -675,7 +675,7 @@ fatal(const char *fmt,...) if (nonfatal_fatal) longjmp(kexjmp, -1); else - fatal_cleanup(); + exit(255); } static void |