summaryrefslogtreecommitdiffstats
path: root/authfd.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 /authfd.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 'authfd.c')
-rw-r--r--authfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfd.c b/authfd.c
index 55ad13e3..33d09908 100644
--- a/authfd.c
+++ b/authfd.c
@@ -14,7 +14,7 @@ Functions for connecting the local authentication agent.
*/
#include "includes.h"
-RCSID("$Id: authfd.c,v 1.5 1999/11/17 06:29:08 damien Exp $");
+RCSID("$Id: authfd.c,v 1.6 1999/11/18 21:25:48 damien Exp $");
#include "ssh.h"
#include "rsa.h"
@@ -212,7 +212,7 @@ ssh_get_next_identity(AuthenticationConnection *auth,
*comment = buffer_get_string(&auth->identities, NULL);
if (bits != BN_num_bits(n))
- error("Warning: keysize mismatch: actual %d, announced %s",
+ error("Warning: keysize mismatch: actual %d, announced %u",
BN_num_bits(n), bits);
/* Decrement the number of remaining entries. */