diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2005-06-09 13:43:50 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2005-06-09 13:43:50 +0000 |
commit | ae24b58fa31f7c30ea10dd7930d3812181c813ac (patch) | |
tree | 943ac6088ee5784d39861a56738c01b9e4c05156 /usr.bin/ssh/cipher.c | |
parent | 017f529b2277ce3e0f2256cc8227c03963d7e0e7 (diff) |
Correctly initialize end of array sentinel; ok djm@
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 0bb61af9fe9..18e14774834 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.74 2005/05/23 23:32:46 djm Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.75 2005/06/09 13:43:49 dtucker Exp $"); #include "xmalloc.h" #include "log.h" @@ -78,7 +78,7 @@ struct Cipher { { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, evp_aes_128_ctr }, { "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, EVP_acss }, - { NULL, SSH_CIPHER_INVALID, 0, 0, NULL } + { NULL, SSH_CIPHER_INVALID, 0, 0, 0, NULL } }; /*--*/ |