lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 23 Sep 2021 17:41:12 +0200 From: Mauro Carvalho Chehab <mchehab+huawei@...nel.org> To: #@...nel.org, YUyICHTRdfL8Ul7X@...ah.com, Linux Doc Mailing List <linux-doc@...r.kernel.org>, Greg Kroah-Hartman <gregkh@...uxfoundation.org> Cc: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>, "Jonathan Corbet" <corbet@....net>, linux-kernel@...r.kernel.org Subject: [PATCH 1/8] scripts: get_abi.pl: Fix get_abi.pl search output Currently, the get_abi.pl will print an invalid symbol (\xac character). Fix it. Fixes: ab9c14805b37 ("scripts: get_abi.pl: Better handle multiple What parameters") Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@...nel.org> --- scripts/get_abi.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl index c52a1cf0f49d..65261f464e25 100755 --- a/scripts/get_abi.pl +++ b/scripts/get_abi.pl @@ -501,6 +501,7 @@ sub search_symbols { my $file = $data{$what}->{filepath}; + $what =~ s/\xac/, /g; my $bar = $what; $bar =~ s/./-/g; -- 2.31.1
Powered by blists - more mailing lists