diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 1999-12-02 20:19:00 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 1999-12-02 20:19:00 +0000 |
commit | 085c4cc8a52b5d1448f55c0bf1d89de804d30ab4 (patch) | |
tree | 04b1871410fa46047aa8a2a936e079d32a0bad0e /usr.bin/ssh/hostfile.c | |
parent | 48a3aa45ef3d16ea1d4f5df62b5ad8ec9b7fab2a (diff) |
indent, shorter warning
Diffstat (limited to 'usr.bin/ssh/hostfile.c')
-rw-r--r-- | usr.bin/ssh/hostfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/hostfile.c b/usr.bin/ssh/hostfile.c index 8117b7017c7..7060a899ef4 100644 --- a/usr.bin/ssh/hostfile.c +++ b/usr.bin/ssh/hostfile.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$Id: hostfile.c,v 1.9 1999/11/24 19:53:47 markus Exp $"); +RCSID("$OpenBSD: hostfile.c,v 1.10 1999/12/02 20:18:59 markus Exp $"); #include "packet.h" #include "ssh.h" @@ -231,9 +231,9 @@ check_host_in_hostfile(const char *filename, const char *host, continue; if (kbits != BN_num_bits(kn)) { - error("Warning: error in %s, line %d: keysize mismatch for host %s: " - "actual size %d vs. announced %d.", - filename, linenum, host, BN_num_bits(kn), kbits); + error("Warning: %s, line %d: keysize mismatch for host %s: " + "actual %d vs. announced %d.", + filename, linenum, host, BN_num_bits(kn), kbits); error("Warning: replace %d with %d in %s, line %d.", kbits, BN_num_bits(kn), filename, linenum); } |