diff options
author | Kevin Steves <stevesk@pobox.com> | 2000-12-06 23:47:55 +0100 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2000-12-06 23:47:55 +0100 |
commit | fc74af43ce005c9220bfb110a2fbf3a48c36c148 (patch) | |
tree | 865150714ff93a06587c14ab8705f73e3ce70bc4 /ssh-keyscan.c | |
parent | - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't (diff) | |
download | openssh-fc74af43ce005c9220bfb110a2fbf3a48c36c148.tar.xz openssh-fc74af43ce005c9220bfb110a2fbf3a48c36c148.zip |
- (stevesk) OpenSSH CVS update:
- markus@cvs.openbsd.org 2000/12/06 19:57:48
[ssh-keyscan.c]
err(3) -> internal error(), from stevesk@sweden.hp.com
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r-- | ssh-keyscan.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 26ea59eca..19f57b7e4 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c @@ -8,14 +8,13 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.1 2000/12/04 19:24:02 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.2 2000/12/06 19:57:48 markus Exp $"); #ifdef HAVE_SYS_QUEUE_H #include <sys/queue.h> #else #include "bsd-queue.h" #endif -#include <err.h> #include <errno.h> #include <openssl/bn.h> @@ -528,7 +527,7 @@ nexthost(int argc, char **argv) fname = argv[argno++]; if (!strcmp(fname, "-")) fname = NULL; - lb = Linebuf_alloc(fname, warn); + lb = Linebuf_alloc(fname, error); } else error("ignoring invalid/misplaced option `%s'", argv[argno++]); } else { |