From a7becce9a339ff6720c706300577a733501136a8 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Wed, 5 Jul 2006 17:40:17 -0700 Subject: [PATCH] * merge in changes to fix blocking bugs --- debian/changelog | 3 +++ scripts/service.in | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5fbd4b18..113b733f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -115,6 +115,9 @@ debbugs (2.4.2) UNRELEASED; urgency=low - Add X-$gProject-PR-Source: line (closes: #219230) - Use the %cats data structure properly in pkgreport.cgi (closes: #367514) + - Document nnn.*@foobar addresses (closes: #188670) + - Support cloned bugs in control blocking (closes: #337329) + - Indicate which bugs are blocked after blocking (closes: #367496) -- Colin Watson Fri, 20 Jun 2003 18:57:25 +0100 diff --git a/scripts/service.in b/scripts/service.in index 19e8bb31..fdf1fa80 100755 --- a/scripts/service.in +++ b/scripts/service.in @@ -762,11 +762,11 @@ END &transcript("Was blocked by: $data->{blockedby}\n"); } if ($addsub eq "set") { - $action= "Blocking bugs set to: " . join(", ", @okayblockers); + $action= "Blocking bugs of $bugnum set to: " . join(", ", @okayblockers); } elsif ($addsub eq "add") { - $action= "Blocking bugs added: " . join(", ", @okayblockers); + $action= "Blocking bugs of $bugnum added: " . join(", ", @okayblockers); } elsif ($addsub eq "sub") { - $action= "Blocking bugs removed: " . join(", ", @okayblockers); + $action= "Blocking bugs of $bugnum removed: " . join(", ", @okayblockers); } my %removedblocks; my %addedblocks; -- 2.39.5