summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorsteve <steve>2011-05-12 13:13:07 +0000
committersteve <steve>2011-05-12 13:13:07 +0000
commit940ecac7a8a6248cee1582c3957df6b1b07a6e58 (patch)
tree320f020927559a5379d0586b1e4a771892795417 /util
parent71637023751d7b4a61728b1745adb50fb0a84b95 (diff)
downloadopenssl-940ecac7a8a6248cee1582c3957df6b1b07a6e58.tar.gz
Add SSL_INTERN definition.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 9d5304627..aefc6d624 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";