diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2016-03-03 22:02:58 +0100 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2016-03-04 18:48:03 +0100 |
commit | 1510b5f7ca8d06d2ea5966f645dce72a17b1b9c5 (patch) | |
tree | f2bf45333936008ec53cd71942dbb43697acd618 /ssl/ssl_ciph.c | |
parent | Curve25519: fix const-initialization (diff) | |
download | openssl-1510b5f7ca8d06d2ea5966f645dce72a17b1b9c5.tar.xz openssl-1510b5f7ca8d06d2ea5966f645dce72a17b1b9c5.zip |
Don't mark the eNULL ciphers as non-default.
They're not part of ALL, so they're not part of COMPLEMENTOFDEFAULT
Reviewed-by: Rich Salz <rsalz@openssl.org>
MR: #2202
Diffstat (limited to 'ssl/ssl_ciph.c')
-rw-r--r-- | ssl/ssl_ciph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index 9fbdc543fa..376b7b62d5 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -296,7 +296,7 @@ static const SSL_CIPHER cipher_aliases[] = { * "COMPLEMENTOFDEFAULT" (does *not* include ciphersuites not found in * ALL!) */ - {0, SSL_TXT_CMPDEF, 0, 0, 0, ~SSL_eNULL, 0, 0, SSL_NOT_DEFAULT, 0, 0, 0}, + {0, SSL_TXT_CMPDEF, 0, 0, 0, 0, 0, 0, SSL_NOT_DEFAULT, 0, 0, 0}, /* * key exchange aliases (some of those using only a single bit here |