diff options
author | 1999-11-15 21:38:53 +0000 | |
---|---|---|
committer | 1999-11-15 21:38:53 +0000 | |
commit | 052baa30ac8c931cec4cada49f4916dd1a2f2f5f (patch) | |
tree | 8e4a0e937a5776ee00cd1c2fed4e66bf5fd15c16 /usr.bin/ssh/cipher.c | |
parent | Quote metachars on expand_word too; ok millert@ (diff) | |
download | wireguard-openbsd-052baa30ac8c931cec4cada49f4916dd1a2f2f5f.tar.xz wireguard-openbsd-052baa30ac8c931cec4cada49f4916dd1a2f2f5f.zip |
remove support for cipher RC4
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r-- | usr.bin/ssh/cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index c66d31cf458..c4283373ee0 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -12,7 +12,7 @@ Created: Wed Apr 19 17:41:39 1995 ylo */ #include "includes.h" -RCSID("$Id: cipher.c,v 1.13 1999/11/02 19:42:35 markus Exp $"); +RCSID("$Id: cipher.c,v 1.14 1999/11/15 21:38:53 markus Exp $"); #include "ssh.h" #include "cipher.h" @@ -230,7 +230,7 @@ void cipher_set_key(CipherContext *context, int cipher, break; default: - fatal("cipher_set_key: unknown cipher: %d", cipher); + fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher)); } memset(padded, 0, sizeof(padded)); } |