From 7e8e820153a620ab1dcd81857a7de0969c41d043 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Tue, 16 Nov 1999 13:37:16 +1100 Subject: - Merged OpenBSD CVS changes: - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c] [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c] the keysize of rsa-parameter 'n' is passed implizit, a few more checks and warnings about 'pretended' keysizes. - [cipher.c cipher.h packet.c packet.h sshd.c] remove support for cipher RC4 - [ssh.c] a note for legay systems about secuity issues with permanently_set_uid(), the private hostkey and ptrace() - [sshconnect.c] more detailed messages about adding and checking hostkeys --- cipher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cipher.c') diff --git a/cipher.c b/cipher.c index 32b5ecb6..a33188e4 100644 --- a/cipher.c +++ b/cipher.c @@ -12,7 +12,7 @@ Created: Wed Apr 19 17:41:39 1995 ylo */ #include "includes.h" -RCSID("$Id: cipher.c,v 1.5 1999/11/12 23:51:58 damien Exp $"); +RCSID("$Id: cipher.c,v 1.6 1999/11/16 02:37:16 damien Exp $"); #include "ssh.h" #include "cipher.h" @@ -235,7 +235,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)); } -- cgit v1.2.1