From: Guy Maor Date: Sat, 6 Feb 1999 23:39:58 +0000 (+0000) Subject: fix typo - missing } X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77d382dd95fea6af014c60e5ac2e320f5e4f96a0;p=dpkg fix typo - missing } --- diff --git a/scripts/dpkg-scanpackages.pl b/scripts/dpkg-scanpackages.pl index 7f5a6468..fa30c7fe 100755 --- a/scripts/dpkg-scanpackages.pl +++ b/scripts/dpkg-scanpackages.pl @@ -148,10 +148,11 @@ while () { ($sectioncut = $section) =~ s:^[^/]*/::; if (length($psubdir{$p}) && $section ne $psubdir{$p} && $sectioncut ne $psubdir{$p}) { - if (length($psubdir{$p}) && $section ne $psubdir{$p}) { + if (length($psubdir{$p}) && $section ne $psubdir{$p}) { print(STDERR " !! Package $p has \`Section: $section',". - " but file is in \`$psubdir{$p}' !!\n") || die $!; + " but file is in \`$psubdir{$p}' !!\n") || die $!; $ouches++; + } } $o1{$p}= 1; }