From: Richard Levitte Date: Tue, 27 Feb 2018 20:02:31 +0000 (+0100) Subject: crypto/ec/asm/x25519-x86_64.pl: close STDOUT, not $STDOUT X-Git-Tag: OpenSSL_1_1_1-pre3~222 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4c861b381667b8e496483bf89f72674ad7e5fc25;p=oweals%2Fopenssl.git crypto/ec/asm/x25519-x86_64.pl: close STDOUT, not $STDOUT Fixes #5471 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5472) --- diff --git a/crypto/ec/asm/x25519-x86_64.pl b/crypto/ec/asm/x25519-x86_64.pl index 68a7771a92..9a5693965e 100755 --- a/crypto/ec/asm/x25519-x86_64.pl +++ b/crypto/ec/asm/x25519-x86_64.pl @@ -815,4 +815,4 @@ ___ $code =~ s/\`([^\`]*)\`/eval $1/gem; print $code; -close $STDOUT; +close STDOUT;