From c5b87ba164cb07785a63eb0df8e107c899c0a09c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 9 Jul 2025 23:34:21 +0200 Subject: [PATCH] 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. ``` --- tests/libtest/test1013.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl index 6cf6727b9b..b97341d0cb 100755 --- a/tests/libtest/test1013.pl +++ b/tests/libtest/test1013.pl @@ -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;