From: Eugene Syromiatnikov Date: Tue, 31 Mar 2026 03:13:08 +0000 (+0200) Subject: util/checkplatformsyms.pl: syntax nit fix X-Git-Tag: openssl-4.0.0~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82ee93152d45de2275d1b0dd312dab753b5b3ff6;p=thirdparty%2Fopenssl.git util/checkplatformsyms.pl: syntax nit fix Address the following complaint: \2 better written as $2 at ../util/checkplatformsyms.pl line 39. Signed-off-by: Eugene Syromiatnikov Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz MergeDate: Fri Apr 3 15:42:16 2026 (Merged from https://github.com/openssl/openssl/pull/30635) (cherry picked from commit b19b0e22fb4fba64deab91521c29048b02d7e913) --- diff --git a/util/checkplatformsyms.pl b/util/checkplatformsyms.pl index c43d74daba9..3e42f976eaf 100755 --- a/util/checkplatformsyms.pl +++ b/util/checkplatformsyms.pl @@ -43,7 +43,7 @@ if ($Config{osname} eq "MSWin32") { { chomp; my $dllfile = $_; - $dllfile =~ s/( +)(.*)(\.dll)(.*)/DLLFILE \2/; + $dllfile =~ s/( +)(.*)(\.dll)(.*)/DLLFILE $2/; if (index($dllfile, "DLLFILE") >= 0) { $currentdll = substr($dllfile, 8); $currentdll =~ s/^\s+|s+$//g;