diff options
author | 2002-06-19 00:27:55 +0000 | |
---|---|---|
committer | 2002-06-19 00:27:55 +0000 | |
commit | 4d92f097ed8083b0e7cbdd57c0cb4ff45b4a21e6 (patch) | |
tree | e6816e2b604bc2ba3e22316841a95a9d703be8a8 /usr.bin/ssh/auth1.c | |
parent | pull in missing includes (diff) | |
download | wireguard-openbsd-4d92f097ed8083b0e7cbdd57c0cb4ff45b4a21e6.tar.xz wireguard-openbsd-4d92f097ed8083b0e7cbdd57c0cb4ff45b4a21e6.zip |
KNF done automatically while reading....
Diffstat (limited to 'usr.bin/ssh/auth1.c')
-rw-r--r-- | usr.bin/ssh/auth1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index 27140a9b698..4858aaebaf5 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.40 2002/04/10 08:21:47 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.41 2002/06/19 00:27:55 deraadt Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -204,7 +204,7 @@ do_authloop(Authctxt *authctxt) if (bits != BN_num_bits(client_host_key->rsa->n)) verbose("Warning: keysize mismatch for client_host_key: " "actual %d, announced %d", - BN_num_bits(client_host_key->rsa->n), bits); + BN_num_bits(client_host_key->rsa->n), bits); packet_check_eom(); authenticated = auth_rhosts_rsa(pw, client_user, |