diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-18 14:00:50 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 1999-11-18 14:00:50 +0000 |
commit | 0c0a1b78c4dcea75d3af81ff0cfc60a948a7ef39 (patch) | |
tree | d858af80b5b83f82c6c2cec279a27f95ec88bd9f /usr.bin/ssh/sshconnect.c | |
parent | 27bbd9982b4d790d13a1197896afe68fa0406183 (diff) |
more %d vs. %s in fmt-strings
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index a1faa7e61a4..23418cfe240 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -15,7 +15,7 @@ login (authentication) dialog. */ #include "includes.h" -RCSID("$Id: sshconnect.c,v 1.34 1999/11/17 09:51:57 markus Exp $"); +RCSID("$Id: sshconnect.c,v 1.35 1999/11/18 14:00:49 markus Exp $"); #include <ssl/bn.h> #include "xmalloc.h" @@ -1348,7 +1348,7 @@ void ssh_login(int host_key_valid, if (cipher_mask() & supported_ciphers & (1 << ssh_cipher_default)) options.cipher = ssh_cipher_default; else { - debug("Cipher %d not supported, using %.100s instead.", + debug("Cipher %s not supported, using %.100s instead.", cipher_name(ssh_cipher_default), cipher_name(SSH_FALLBACK_CIPHER)); options.cipher = SSH_FALLBACK_CIPHER; |