mirror of
https://github.com/curl/curl.git
synced 2026-06-07 20:24:25 +03:00
test1013.pl: fix warning
``` Global symbol "@curl" requires explicit package name (did you forget to declare "my @curl"?) at ./test1013.pl line 47. Global symbol "@curl" requires explicit package name (did you forget to declare "my @curl"?) at ./test1013.pl line 61. Global symbol "@curl" requires explicit package name (did you forget to declare "my @curl"?) at ./test1013.pl line 61. Global symbol "@curl" requires explicit package name (did you forget to declare "my @curl"?) at ./test1013.pl line 65. ```
This commit is contained in:
parent
fea9610e47
commit
c5b87ba164
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ close CURL;
|
|||
|
||||
$curl_protocols =~ s/\r//;
|
||||
$curl_protocols =~ /\w+: (.*)$/;
|
||||
@curl = split / /,$1;
|
||||
my @curl = split / /,$1;
|
||||
|
||||
# Read the output of curl-config
|
||||
my @curl_config;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue