From bab6af73e52216224442757406f48702dfbf4373 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sat, 7 Oct 2017 18:09:13 +0200 Subject: [PATCH] fix check_source() --- helper.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.pl b/helper.pl index b18affa..916f881 100755 --- a/helper.pl +++ b/helper.pl @@ -59,7 +59,7 @@ sub check_source { $file !~ m|src/ciphers/.*\.c$| && $file !~ m|src/hashes/.*\.c$| && $file !~ m|src/math/.+_desc.c$| && - $file !~ m|src/stream/sober128/sober128.c$| && + $file !~ m|src/stream/sober128/sober128_stream.c$| && $l =~ /^static\s+\S+\s+([^_][a-zA-Z0-9_]+)\s*\(/) { push @{$troubles->{staticfunc_name}}, "$lineno($1)"; }