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

lintian: r307 - in trunk: debian lib



Author: djpig
Date: 2004-07-01 18:51:47 +0200 (Thu, 01 Jul 2004)
New Revision: 307

Modified:
   trunk/debian/changelog
   trunk/lib/Util.pm
Log:
 a space after the colon is not mandatory in dpkg control files


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-07-01 16:45:46 UTC (rev 306)
+++ trunk/debian/changelog	2004-07-01 16:51:47 UTC (rev 307)
@@ -109,6 +109,8 @@
   * lib/Util.pm:
     + [FL] dpkg supports comments in control files now, handle them
       correctly
+    + [FL] a space after the colon is not mandatory in dpkg control
+      files
 
   * testset/filenames:
     + [JvW] Fix two lintian warnings in lintian itself by touching files only

Modified: trunk/lib/Util.pm
===================================================================
--- trunk/lib/Util.pm	2004-07-01 16:45:46 UTC (rev 306)
+++ trunk/lib/Util.pm	2004-07-01 16:51:47 UTC (rev 307)
@@ -92,7 +92,7 @@
 	    $last_tag = $tag;
 	}
 	# new field?
-	elsif (m/^(\S+): (.*)$/o) {
+	elsif (m/^(\S+):(.*)$/o) {
 	    $open_section = 1;
 
 	    my ($tag,$value) = (lc $1,$2);



Reply to: