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

[SCM] Debian package checker branch, master, updated. 2.2.0-29-gc2ef3fd



The following commit has been merged in the master branch:
commit c26e5bad8761c6d9287f579887c3429621a1333d
Author: Russ Allbery <rra@debian.org>
Date:   Sat Jan 31 11:06:07 2009 -0800

    Fix missed variable renaming in Lintian::Collect::Source

diff --git a/lib/Lintian/Collect/Source.pm b/lib/Lintian/Collect/Source.pm
index 97c3c8d..c7249d0 100644
--- a/lib/Lintian/Collect/Source.pm
+++ b/lib/Lintian/Collect/Source.pm
@@ -76,7 +76,7 @@ sub binaries {
     my %binaries;
     opendir(BINPKGS, 'control') or fail("can't open control directory: $!");
     for my $package (readdir BINPKGS) {
-        next if $binpkg =~ /^\.\.?$/;
+        next if $package =~ /^\.\.?$/;
         my $type = $self->binary_field($package, 'xc-package-type') || 'deb';
         $binaries{$package} = lc $type;
     }

-- 
Debian package checker


Reply to: