summaryrefslogtreecommitdiffstats
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-19 08:25:48 +1100
committerDamien Miller <djm@mindrot.org>1999-11-19 08:25:48 +1100
commit23b783952a3b9c3daadff0b97b9f8e312c3a72be (patch)
tree7614deec581608180862d447390fc933ec26fa42 /sshd.c
parent5bbbd364c993ef1d51ba77e40bb56fc017d8ea78 (diff)
- Merged OpenBSD CVS changes
- [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c] more %d vs. %s in fmt-strings - [authfd.c] Integers should not be printed with %s
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sshd.c b/sshd.c
index e3a94bf1..1953807b 100644
--- a/sshd.c
+++ b/sshd.c
@@ -18,7 +18,7 @@ agent connections.
*/
#include "includes.h"
-RCSID("$Id: sshd.c,v 1.24 1999/11/18 20:56:21 damien Exp $");
+RCSID("$Id: sshd.c,v 1.25 1999/11/18 21:25:48 damien Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -1394,8 +1394,7 @@ do_authloop(struct passwd *pw)
if (bits != BN_num_bits(client_host_key_n))
error("Warning: keysize mismatch for client_host_key: "
- "actual %d, announced %s", BN_num_bits(client_host_key_n), bits);
-
+ "actual %d, announced %d", BN_num_bits(client_host_key_n), bits);
packet_integrity_check(plen, (4 + ulen) + 4 + elen + nlen, type);
authenticated = auth_rhosts_rsa(pw, client_user,