=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/cipher.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- src/usr.bin/ssh/cipher.c 1999/09/30 05:53:04 1.6 +++ src/usr.bin/ssh/cipher.c 1999/09/30 14:05:41 1.7 @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$Id: cipher.c,v 1.6 1999/09/30 05:53:04 deraadt Exp $"); +RCSID("$Id: cipher.c,v 1.7 1999/09/30 14:05:41 provos Exp $"); #include "ssh.h" #include "cipher.h" @@ -122,7 +122,7 @@ int cipher.h. */ static char *cipher_names[] = { - "none", + "no none", "no idea", "no des", "3des", @@ -138,7 +138,6 @@ unsigned int cipher_mask() { unsigned int mask = 0; - mask |= 1 << SSH_CIPHER_NONE; mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */ mask |= 1 << SSH_CIPHER_BLOWFISH; return mask; @@ -205,6 +204,7 @@ switch (cipher) { case SSH_CIPHER_NONE: + /* Has to stay for authfile saving of private key with no passphrase */ break; case SSH_CIPHER_3DES: