diff options
author | 2005-06-09 13:43:49 +0000 | |
---|---|---|
committer | 2005-06-09 13:43:49 +0000 | |
commit | 8edb76a941218e7af7f6894d2ea24f82b057219e (patch) | |
tree | 2f44dfd454deaa675ac0f3edd08e666f98f348e8 /usr.bin/ssh/cipher.c | |
parent | If there is a problem to connect to a remote peer, do the same log damping (diff) | |
download | wireguard-openbsd-8edb76a941218e7af7f6894d2ea24f82b057219e.tar.xz wireguard-openbsd-8edb76a941218e7af7f6894d2ea24f82b057219e.zip |
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 } }; /*--*/ |