diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-18 22:25:48 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-18 22:25:48 +0100 |
commit | 23b783952a3b9c3daadff0b97b9f8e312c3a72be (patch) | |
tree | 7614deec581608180862d447390fc933ec26fa42 /sshd.c | |
parent | - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com> (diff) | |
download | openssh-23b783952a3b9c3daadff0b97b9f8e312c3a72be.tar.xz openssh-23b783952a3b9c3daadff0b97b9f8e312c3a72be.zip |
- 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.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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, |