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

[SCM] Debian package checker branch, master, updated. 2.5.1-89-g17d11f8



The following commit has been merged in the master branch:
commit 17d11f860af962e5e777817f809164715bc9555d
Author: Niels Thykier <niels@thykier.net>
Date:   Wed Jul 13 01:29:36 2011 +0200

    html_reports: maintainer is undef if we cannot find the src
    
    If we cannot find the source package, we cannot find the maintainer
    as %source_info is the only data structure with the maintainer
    field.

diff --git a/reporting/html_reports b/reporting/html_reports
index 61b4e9e..9faed73 100755
--- a/reporting/html_reports
+++ b/reporting/html_reports
@@ -255,11 +255,7 @@ while (<>) {
         } else {
             warn "source for package $package not found!\n";
             $source = $package;
-            if ($type eq 'binary') {
-                $maintainer = $binary_info{$package}->{maintainer};
-            } elsif ($type eq 'udeb') {
-                $maintainer = $udeb_info{$package}->{maintainer};
-            }
+            $maintainer = undef;
         }
         if ($type eq 'binary') {
             $version = $binary_info{$package}->{version};

-- 
Debian package checker


Reply to: