From: Dr. Stephen Henson <steve@openssl.org>
Date: Thu, 12 May 2011 13:13:07 +0000 (+0000)
Subject: Add SSL_INTERN definition.
X-Git-Tag: OpenSSL-fips-2_0-rc1~437
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1d00b9611eaeedb66b6a91fd49018304f42a15c;p=openssl

Add SSL_INTERN definition.
---

diff --git a/util/mkdef.pl b/util/mkdef.pl
index 9d53046278..aefc6d624c 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -112,7 +112,9 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
 			 # NEXTPROTONEG
 			 "NEXTPROTONEG",
 			 # Deprecated functions
-			 "DEPRECATED" );
+			 "DEPRECATED",
+			 # Hide SSL internals
+			 "SSL_INTERN");
 
 my $options="";
 open(IN,"<Makefile") || die "unable to open Makefile!\n";