Clean up whitespace using Emacs
authorJacob Bachmeyer <jcb@gnu.org>
Sun, 9 May 2021 02:07:23 +0000 (21:07 -0500)
committerJacob Bachmeyer <jcb@gnu.org>
Sun, 9 May 2021 02:07:23 +0000 (21:07 -0500)
CheckVulnerabilities.pm

index 0784702d74822146d6a9d33ac6fbb7f34d041951..478df99872a5ff969a0a137e6e41555bd8107230 100644 (file)
@@ -1,4 +1,3 @@
-
 package CheckVulnerabilities;
 
 my $NAME = 'test-vulnerabilities.pl';
@@ -52,8 +51,8 @@ sub automake_tests {
     my $found_makefile = 0;
     while (defined (my $line = <TAR>)) {
       if ($line =~ /Makefile.in/i) {
-        $found_makefile = 1;
-        last;
+       $found_makefile = 1;
+       last;
       }
     }
     close(TAR); # We don't care about errors here; the pipe can cause non-zero exit codes when tar is unhappy that it's asked to stop
@@ -67,10 +66,10 @@ sub automake_tests {
     my $found_cve_2012_3386 = 0;
     while (defined (my $line = <TAR>)) {
       if ($line =~ /perm -777 -exec chmod a\+rwx|chmod 777 \$\(distdir\)/) {
-        $found_cve_2009_4029 = 1;
+       $found_cve_2009_4029 = 1;
       }
       if ($line =~ /chmod a\+w \$\(distdir\)/) {
-        $found_cve_2012_3386 = 1;
+       $found_cve_2012_3386 = 1;
       }
     }
     close(TAR); # We don't care about errors here; the pipe can cause non-zero exit codes when tar is unhappy that it's asked to stop