diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-09-19 11:30:40 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-09-19 11:30:40 +0000 |
commit | 7946a0d57b11d3e1aa0781001050eea01e66588d (patch) | |
tree | 1e91c8674075c3e6cdefe4dab085e5c186740f17 /usr.bin/ssh | |
parent | 1ffb819e985153c056e628eb12c16a14a15810b1 (diff) |
avoid fatal_cleanup, just call exit(); ok deraadt
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index f040af5fb40..4fc962063c4 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/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 <sys/queue.h> #include <errno.h> @@ -660,7 +660,7 @@ fatal(const char *fmt,...) if (nonfatal_fatal) longjmp(kexjmp, -1); else - fatal_cleanup(); + exit(255); } static void |