]> err.no Git - dpkg/commitdiff
fix typo - missing }
authorGuy Maor <maor@debian.org>
Sat, 6 Feb 1999 23:39:58 +0000 (23:39 +0000)
committerGuy Maor <maor@debian.org>
Sat, 6 Feb 1999 23:39:58 +0000 (23:39 +0000)
scripts/dpkg-scanpackages.pl

index 7f5a646852f7ffd087d5de777a229ba15a28f3cd..fa30c7feb6890652cc2d62e5987486858d37ef67 100755 (executable)
@@ -148,10 +148,11 @@ while (<O>) {
     ($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;
 }