=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/cipher.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/usr.bin/ssh/cipher.c 1999/11/15 21:38:53 1.14 +++ src/usr.bin/ssh/cipher.c 1999/11/22 21:02:38 1.15 @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$Id: cipher.c,v 1.14 1999/11/15 21:38:53 markus Exp $"); +RCSID("$Id: cipher.c,v 1.15 1999/11/22 21:02:38 markus Exp $"); #include "ssh.h" #include "cipher.h" @@ -264,7 +264,7 @@ break; default: - fatal("cipher_encrypt: unknown cipher: %d", context->type); + fatal("cipher_encrypt: unknown cipher: %s", cipher_name(context->type)); } } @@ -299,6 +299,6 @@ break; default: - fatal("cipher_decrypt: unknown cipher: %d", context->type); + fatal("cipher_decrypt: unknown cipher: %s", cipher_name(context->type)); } }