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

[SCM] Debian package checker branch, master, updated. 2.3.4-110-g541e3e3



The following commit has been merged in the master branch:
commit 541e3e3688adf8416e828e39f1d16ddee3bff86d
Author: Russ Allbery <rra@debian.org>
Date:   Tue Apr 13 14:42:35 2010 -0700

    Anchor libjpeg regex to avoid false positives on Pascal
    
    Similar to embedded-zlib, Pascal has a separate implementation of
    libjpeg that uses the same strings.  Anchor the match of the quantization
    table error string to avoid matching the Pascal version, which has a
    leading string length.

diff --git a/checks/binaries b/checks/binaries
index 3e7e463..2134ada 100644
--- a/checks/binaries
+++ b/checks/binaries
@@ -288,7 +288,7 @@ foreach my $file (sort keys %{$info->file_info}) {
     }
 
     if ($info->field('source') !~ '^libjpeg.*'
-	and $strings =~ /quantization tables are too coarse for baseline JPEG/) {
+	and $strings =~ /^Caution: quantization tables are too coarse for baseline JPEG/m) {
 	tag "embedded-libjpeg", $file;
     }
 

-- 
Debian package checker


Reply to: