[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r455 - in trunk: debian reporting



Author: djpig
Date: 2005-07-23 20:47:17 +0200 (Sat, 23 Jul 2005)
New Revision: 455

Modified:
   trunk/debian/changelog
   trunk/reporting/html_reports
Log:
Fix counting of binary package names


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2005-07-23 16:39:13 UTC (rev 454)
+++ trunk/debian/changelog	2005-07-23 18:47:17 UTC (rev 455)
@@ -41,6 +41,9 @@
     + [FL] Adjust check for positional arguments after ". file" to detect
       more shell control and piping commands that are all allowed.
       Noted by Thomas Hood. (Closes: #319212)
+  
+  * reporting/html_reports:
+    + [FL] Fix counting of binary package names
 
  -- Frank Lichtenheld <djpig@debian.org>  Mon, 11 Jul 2005 15:50:10 +0300
 

Modified: trunk/reporting/html_reports
===================================================================
--- trunk/reporting/html_reports	2005-07-23 16:39:13 UTC (rev 454)
+++ trunk/reporting/html_reports	2005-07-23 18:47:17 UTC (rev 455)
@@ -159,7 +159,8 @@
 	    output_chunk(\@tags) if @tags;
 	    undef @tags;
 	}
-	$lastpkg = $pkg; $lasttag = $tag;
+	$lastpkg = $pkg if $type ne ' source';
+	$lasttag = $tag;
 
 	$tag = make_tagref($tag);
 	push(@tags,"$code: $pkg$type: $tag$rest\n");



Reply to: