Commit b19b0e22fb for openssl.org
commit b19b0e22fb4fba64deab91521c29048b02d7e913
Author: Eugene Syromiatnikov <esyr@openssl.org>
Date: Tue Mar 31 05:13:08 2026 +0200
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 <esyr@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.foundation>
MergeDate: Fri Apr 3 15:42:16 2026
(Merged from https://github.com/openssl/openssl/pull/30635)
diff --git a/util/checkplatformsyms.pl b/util/checkplatformsyms.pl
index c43d74daba..3e42f976ea 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;