[openssl-dev] [openssl.org #4468] #ifndefs incorrect for GOST

paul.dale@oracle.com via RT rt at openssl.org
Tue Mar 22 00:26:33 UTC 2016


Attached is a patch that fixes a typo in the #ifndef OPENSSL_NO_GOST lines in ssl/s3_lib.c


regards,

Pauli

-- 
Oracle
Dr Paul Dale | Cryptographer | Network Security & Encryption 
Phone +61 7 3031 7217
Oracle Australia

-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4468
Please log in as guest with password guest if prompted

-------------- next part --------------
>From 8cc3d7a13c2092331f98ca12db64fabe23872e00 Mon Sep 17 00:00:00 2001
From: Pauli <paul.dale at oracle.com>
Date: Tue, 22 Mar 2016 09:16:36 +1000
Subject: [PATCH] Fix #ifndef line for GOST

---
 ssl/s3_lib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 49180cd..aea62ac 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2498,7 +2498,7 @@ static SSL_CIPHER ssl3_ciphers[] =
 
 #endif /* OPENSSL_NO_CAMELLIA */
 
-#ifndef OPENSL_NO_GOST
+#ifndef OPENSSL_NO_GOST
     {
      1,
      "GOST2001-GOST89-GOST89",
@@ -2558,7 +2558,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
     {
-- 
1.9.1



More information about the openssl-dev mailing list