From fea9610e473a17b4908627e3cf8873ec3932d5bd Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 9 Jul 2025 23:33:11 +0200 Subject: [PATCH] test307.pl: silence warning ``` Scalar value @ARGV[0] better written as $ARGV[0] at ./test307.pl line 33. ``` --- tests/libtest/test307.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/test307.pl b/tests/libtest/test307.pl index c3f31402e0..5a0a97a3a6 100755 --- a/tests/libtest/test307.pl +++ b/tests/libtest/test307.pl @@ -30,7 +30,7 @@ if($#ARGV != 0) { print "Usage: $0 curl-executable\n"; exit 3; } -if(!open(CURL, "@ARGV[0] -s --engine list|")) { +if(!open(CURL, "$ARGV[0] -s --engine list|")) { print "Can't get SSL engine list\n"; exit 2; }