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

[SCM] Debian package checker branch, master, updated. 2.2.6-92-gd416c9d



The following commit has been merged in the master branch:
commit 75940c1b27319a09532249d6944f8448095f3273
Author: Russ Allbery <rra@debian.org>
Date:   Sun Mar 8 21:12:21 2009 -0700

    Fix reversed test when checking changelog compression

diff --git a/checks/changelog-file b/checks/changelog-file
index 8dba7b6..a9415c9 100644
--- a/checks/changelog-file
+++ b/checks/changelog-file
@@ -117,7 +117,7 @@ foreach (sort keys %{$info->index}) {
 		    $max_compressed = 1;
 		}
 	    }
-	    if (not $max_compressed and $file_info{$file1} !~ m/gzip compressed/) {
+	    if (not $max_compressed and $file_info{$file1} =~ m/gzip compressed/) {
 		unless ($is_a_symlink{$file1}) {
 		    tag "changelog-not-compressed-with-max-compression", "$file";
 		}

-- 
Debian package checker


Reply to: