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:
Viktor Szakats 2025-07-09 23:34:21 +02:00
parent fea9610e47
commit c5b87ba164
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -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;