From: Don Armstrong <don@volo>
Date: Thu, 6 Jul 2006 00:12:09 +0000 (-0700)
Subject: * Indicate which bug is being blocked in after blocking
X-Git-Tag: release/2.6.0~585^2^2~103^2~1
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=88cebf9e28d1384332baceb5a355d4043fc6e10e;p=debbugs.git

* Indicate which bug is being blocked in after blocking
---

diff --git a/debian/changelog b/debian/changelog
index 9c3c10f9..8e3fb42d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -115,6 +115,7 @@ debbugs (2.4.2) UNRELEASED; urgency=low
     - Add X-$gProject-PR-Source: line (closes: #219230)
     - 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 <cjwatson@debian.org>  Fri, 20 Jun 2003 18:57:25 +0100
diff --git a/scripts/service.in b/scripts/service.in
index 19527b1d..50bb4cd1 100755
--- a/scripts/service.in
+++ b/scripts/service.in
@@ -768,11 +768,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;