]> granicus.if.org Git - pgbadger/commitdiff
Add missing zcat command control in previous patch.
authorDarold Gilles <gilles@darold.net>
Sun, 3 Mar 2013 09:51:58 +0000 (10:51 +0100)
committerDarold Gilles <gilles@darold.net>
Sun, 3 Mar 2013 09:51:58 +0000 (10:51 +0100)
pgbadger

index 0e4192b28b9f9b391b77ed268a6530dafc62968f..4f63ff80b929de1d7722b88da28b5fe3844aa099 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -110,7 +110,8 @@ $| = 1;
 my $JQGRAPH = 1;
 
 # Command line options
-my $zcat                    = 'gunzip -c';
+my $zcat_cmd                = 'gunzip -c';
+my $zcat                    = $zcat_cmd;
 my $bzcat                   = 'bunzip2 -c';
 my $ucat                    = 'unzip -p';
 my $gzip_uncompress_size    = "gunzip -l %f | grep -E '^\\s*[0-9]+' | awk '{print \$2}'";
@@ -6093,9 +6094,9 @@ sub get_log_file
        } else {
 
                my $uncompress = $zcat;
-               if (($logf =~ /\.bz2/i) && ($zcat =~ /^zcat$/)) {
+               if (($logf =~ /\.bz2/i) && ($zcat =~ /^$zcat_cmd$/)) {
                        $uncompress = $bzcat;
-               } elsif (($logf =~ /\.zip/i) && ($zcat =~ /^zcat$/)) {
+               } elsif (($logf =~ /\.zip/i) && ($zcat =~ /^$zcat_cmd$/)) {
                        $uncompress = $ucat;
                }
                &logmsg('DEBUG', "Compressed log file, will use command: $uncompress \"$logf\"");