mirror of
https://github.com/curl/curl.git
synced 2026-07-27 03:27:15 +03:00
test307.pl: silence warning
``` Scalar value @ARGV[0] better written as $ARGV[0] at ./test307.pl line 33. ```
This commit is contained in:
parent
1c89117398
commit
fea9610e47
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue