From 58205fea758426b1a0a8c4a5a969d477ef927a6c Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Fri, 19 Jun 2009 09:36:17 -0700 Subject: [PATCH] fix bug_num/bugnum issue in __check_limit --- Debbugs/Control.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/Control.pm b/Debbugs/Control.pm index a4ff0234..77785cea 100644 --- a/Debbugs/Control.pm +++ b/Debbugs/Control.pm @@ -2686,7 +2686,7 @@ sub __begin_control { if (not __check_limit(data => \@data, exists $param{limit}?(limit => $param{limit}):(), )) { - die "limit failed for bugs: ".join(', ',map {$_->{bugnum}} @data); + die "limit failed for bugs: ".join(', ',map {$_->{bug_num}} @data); } __handle_affected_packages(%param,data => \@data); -- 2.39.5