diff options
author | Brian Carlstrom <bdc@google.com> | 2013-02-05 09:20:38 -0800 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-02-05 09:57:14 -0800 |
commit | 04ef91b390dfcc6125913e2f2af502d23d7a5112 (patch) | |
tree | 2350c86475958f85c6fd56b7c80e0817a1c75b56 /crypto/rc4/asm | |
parent | 3ccf38e0fb3064a4b19879d5e068fb7a124234c0 (diff) | |
download | replicant_openssl-04ef91b390dfcc6125913e2f2af502d23d7a5112.zip replicant_openssl-04ef91b390dfcc6125913e2f2af502d23d7a5112.tar.gz replicant_openssl-04ef91b390dfcc6125913e2f2af502d23d7a5112.tar.bz2 |
openssl-1.0.1d upgrade
Change-Id: Ie980c8834cf2c843858182d98d1f60c65a2a9b70
Diffstat (limited to 'crypto/rc4/asm')
-rw-r--r-- | crypto/rc4/asm/rc4-md5-x86_64.pl | 3 | ||||
-rwxr-xr-x | crypto/rc4/asm/rc4-x86_64.pl | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/crypto/rc4/asm/rc4-md5-x86_64.pl b/crypto/rc4/asm/rc4-md5-x86_64.pl index 7f68409..272fa91 100644 --- a/crypto/rc4/asm/rc4-md5-x86_64.pl +++ b/crypto/rc4/asm/rc4-md5-x86_64.pl @@ -51,7 +51,8 @@ $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"; -open STDOUT,"| $^X $xlate $flavour $output"; +open OUT,"| \"$^X\" $xlate $flavour $output"; +*STDOUT=*OUT; my ($dat,$in0,$out,$ctx,$inp,$len, $func,$nargs); diff --git a/crypto/rc4/asm/rc4-x86_64.pl b/crypto/rc4/asm/rc4-x86_64.pl index d6eac20..75750db 100755 --- a/crypto/rc4/asm/rc4-x86_64.pl +++ b/crypto/rc4/asm/rc4-x86_64.pl @@ -112,7 +112,8 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; ( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or die "can't locate x86_64-xlate.pl"; -open STDOUT,"| $^X $xlate $flavour $output"; +open OUT,"| \"$^X\" $xlate $flavour $output"; +*STDOUT=*OUT; $dat="%rdi"; # arg1 $len="%rsi"; # arg2 |