diff options
author | 2004-07-28 09:40:29 +0000 | |
---|---|---|
committer | 2004-07-28 09:40:29 +0000 | |
commit | d361b76e19a7d88228a9d259f8334291652393df (patch) | |
tree | e8de84c96395026635ad230fe272f32452dee30d /usr.bin/ssh/cipher.c | |
parent | add -ttttt (timestamp difference since the first packet); ok thierry (diff) | |
download | wireguard-openbsd-d361b76e19a7d88228a9d259f8334291652393df.tar.xz wireguard-openbsd-d361b76e19a7d88228a9d259f8334291652393df.zip |
more s/illegal/invalid/
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 7951834e209..04a9895794f 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.70 2004/07/11 17:48:47 deraadt Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.71 2004/07/28 09:40:29 markus Exp $"); #include "xmalloc.h" #include "log.h" @@ -87,7 +87,7 @@ struct Cipher { { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr }, { "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, EVP_acss }, - { NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL } + { NULL, SSH_CIPHER_INVALID, 0, 0, NULL } }; /*--*/ |