From cc25e451581095c271eb1d189ada28b70c2fe956 Mon Sep 17 00:00:00 2001 From: Yuri Myasoedov Date: Mon, 10 Feb 2014 00:10:35 +0400 Subject: [PATCH] maint: fix line numbers in check-aclrules reports Reset line numbering on each input file in check-aclrules.pl. Otherwise it reports wrong line numbers in its error messages. Signed-off-by: Yuri Myasoedov Signed-off-by: Roman Bogorodskiy Signed-off-by: Eric Blake --- src/check-aclrules.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/check-aclrules.pl b/src/check-aclrules.pl index f54b934225..9151e6adc9 100755 --- a/src/check-aclrules.pl +++ b/src/check-aclrules.pl @@ -254,6 +254,8 @@ while (<>) { $brace += $count; $count = s/}//g; $brace -= $count; +} continue { + close ARGV if eof; } exit $status;