diff options
author | 1999-11-18 11:09:39 +0000 | |
---|---|---|
committer | 1999-11-18 11:09:39 +0000 | |
commit | 37e442d41aaedd8a8e766c156ada39d1509a72de (patch) | |
tree | 152d61f7ff1d18e4e691178ea51cc28490a7a1a1 | |
parent | more untested MLINKS (diff) | |
download | wireguard-openbsd-37e442d41aaedd8a8e766c156ada39d1509a72de.tar.xz wireguard-openbsd-37e442d41aaedd8a8e766c156ada39d1509a72de.zip |
Integers should not be printed with %s
-rw-r--r-- | usr.bin/ssh/authfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index 34c68711c39..53e71bad0ec 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -14,7 +14,7 @@ Functions for connecting the local authentication agent. */ #include "includes.h" -RCSID("$Id: authfd.c,v 1.10 1999/11/16 22:52:55 markus Exp $"); +RCSID("$Id: authfd.c,v 1.11 1999/11/18 11:09:39 ho Exp $"); #include "ssh.h" #include "rsa.h" @@ -207,7 +207,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. */ |