diff options
author | Pauli <paul.dale@oracle.com> | 2016-03-22 09:16:36 +1000 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-03-31 11:19:15 -0400 |
commit | 580731aff3fc9855ea93ea734bd924febea027c3 (patch) | |
tree | dddda521e8c3baba95d93cac8687bc56137d207d /ssl | |
parent | 923b1857decf4440b13b82f2aa7cf1189327d1a3 (diff) | |
download | openssl-new-580731aff3fc9855ea93ea734bd924febea027c3.tar.gz |
RT4458: Fix #ifndef line for GOST
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/s3_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index e6cf309bb5..ef65050cc4 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -2496,7 +2496,7 @@ static SSL_CIPHER ssl3_ciphers[] = #endif /* OPENSSL_NO_CAMELLIA */ -#ifndef OPENSL_NO_GOST +#ifndef OPENSSL_NO_GOST { 1, "GOST2001-GOST89-GOST89", @@ -2556,7 +2556,7 @@ static SSL_CIPHER ssl3_ciphers[] = SSL_HANDSHAKE_MAC_GOST12_256 | TLS1_PRF_GOST12_256 | TLS1_STREAM_MAC, 0, 0}, -#endif /* OPENSL_NO_GOST */ +#endif /* OPENSSL_NO_GOST */ #ifndef OPENSSL_NO_IDEA { |