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

[SCM] Debian package checker branch, master, updated. 2.5.1-59-geb1f8e0



The following commit has been merged in the master branch:
commit eb1f8e04424a50e053b39081b794ed7d38c8f006
Author: Niels Thykier <niels@thykier.net>
Date:   Sat Jul 9 11:33:57 2011 +0200

    Use "gzip compressed data" instead of "gzip compressed"
    
    Some checks looks for "gzip compressed data" rather than just
    "gzip compressed", so the manual gzip check in coll/file-info
    should honour that.

diff --git a/collection/file-info b/collection/file-info
index b26f2b3..bf8519c 100755
--- a/collection/file-info
+++ b/collection/file-info
@@ -66,7 +66,7 @@ my $collect = sub {
 		    #  $magic,  __ __ __ __, __ __, $comp  - variables
 		    my ($magic, undef, undef, $comp) = unpack('nNnc', $buff);
 		    if ($magic == 0x1f8b){ # the gzip file magic
-			$text = 'gzip compressed';
+			$text = 'gzip compressed data';
 			# 2 for max compression; RFC1952 suggests this is a flag and not a value,
 			# hench the bit and operation
 			if (($comp & 2) == 2){

-- 
Debian package checker


Reply to: