summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-02-27 21:02:31 +0100
committerRichard Levitte <levitte@openssl.org>2018-02-27 21:17:57 +0100
commit4c861b381667b8e496483bf89f72674ad7e5fc25 (patch)
treeea6fc207f1f7b3d54fed413bf908de5286663c79 /crypto
parentb700bc59669939a9285255293e1bb70a5a35f736 (diff)
crypto/ec/asm/x25519-x86_64.pl: close STDOUT, not $STDOUT
Fixes #5471 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5472)
Diffstat (limited to 'crypto')
-rwxr-xr-xcrypto/ec/asm/x25519-x86_64.pl2
1 files changed, 1 insertions, 1 deletions
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;