summaryrefslogtreecommitdiff
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 55ad13e3a..33d09908e 100644
--- a/authfd.c
+++ b/authfd.c
@@ -14,7 +14,7 @@ Functions for connecting the local authentication agent.
14*/ 14*/
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: authfd.c,v 1.5 1999/11/17 06:29:08 damien Exp $"); 17RCSID("$Id: authfd.c,v 1.6 1999/11/18 21:25:48 damien Exp $");
18 18
19#include "ssh.h" 19#include "ssh.h"
20#include "rsa.h" 20#include "rsa.h"
@@ -212,7 +212,7 @@ ssh_get_next_identity(AuthenticationConnection *auth,
212 *comment = buffer_get_string(&auth->identities, NULL); 212 *comment = buffer_get_string(&auth->identities, NULL);
213 213
214 if (bits != BN_num_bits(n)) 214 if (bits != BN_num_bits(n))
215 error("Warning: keysize mismatch: actual %d, announced %s", 215 error("Warning: keysize mismatch: actual %d, announced %u",
216 BN_num_bits(n), bits); 216 BN_num_bits(n), bits);
217 217
218 /* Decrement the number of remaining entries. */ 218 /* Decrement the number of remaining entries. */