aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/md5
diff options
context:
space:
mode:
authorMike DePaulo <mikedep333@gmail.com>2014-10-18 19:59:47 -0400
committerMike DePaulo <mikedep333@gmail.com>2015-02-28 07:16:10 -0500
commita1babdda61e8cb3f8d0608d87120ba46ca91a21d (patch)
tree633a4386cd59bc6ef0b809b67ca1cc0bb494218f /openssl/crypto/md5
parent8fafe3481b134a4d368ba57e3698754a6a45c4c1 (diff)
downloadvcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.tar.gz
vcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.tar.bz2
vcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.zip
Update openssl to version openssl-1.0.1j
Diffstat (limited to 'openssl/crypto/md5')
-rw-r--r--openssl/crypto/md5/asm/md5-x86_64.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/crypto/md5/asm/md5-x86_64.pl b/openssl/crypto/md5/asm/md5-x86_64.pl
index f11224d17..381bf77e1 100644
--- a/openssl/crypto/md5/asm/md5-x86_64.pl
+++ b/openssl/crypto/md5/asm/md5-x86_64.pl
@@ -108,6 +108,7 @@ sub round4_step
EOF
}
+no warnings qw(uninitialized);
my $flavour = shift;
my $output = shift;
if ($flavour =~ /\./) { $output = $flavour; undef $flavour; }
@@ -119,7 +120,6 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; my $dir=$1; my $xlate;
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";
-no warnings qw(uninitialized);
open OUT,"| \"$^X\" $xlate $flavour $output";
*STDOUT=*OUT;