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 /sshconnect.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 'sshconnect.c')
-rw-r--r-- | sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c index 74d41e62a..8b7737446 100644 --- a/sshconnect.c +++ b/sshconnect.c @@ -15,7 +15,7 @@ login (authentication) dialog. */ #include "includes.h" -RCSID("$Id: sshconnect.c,v 1.11 1999/11/17 22:28:11 damien Exp $"); +RCSID("$Id: sshconnect.c,v 1.12 1999/11/18 21:25:48 damien Exp $"); #ifdef HAVE_OPENSSL #include <openssl/bn.h> @@ -1354,7 +1354,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; |