]> granicus.if.org Git - pgbadger/commitdiff
Remove calls of binmode to force html file output to be utf8 as there is some bad...
authorDarold Gilles <gilles@darold.net>
Sat, 21 Dec 2013 12:18:28 +0000 (13:18 +0100)
committerDarold Gilles <gilles@darold.net>
Sat, 21 Dec 2013 12:18:28 +0000 (13:18 +0100)
pgbadger

index 255078919517c0243ce948dd0c8576e74b784959..29bf718c865e3eada3f66d89f23bbeeda3a28490 100755 (executable)
--- a/pgbadger
+++ b/pgbadger
@@ -385,7 +385,6 @@ if ($extension eq 'tsung') {
        if (not defined $fh) {
                die "FATAL: can't write to $outfile, $!\n";
        }
-       binmode($fh, ':utf8');
        print $fh "<sessions>\n";
        $fh->close();
 
@@ -839,7 +838,6 @@ if ($extension ne 'tsung') {
        if (not defined $fh) {
                die "FATAL: can't write to $outfile, $!\n";
        }
-       binmode($fh, ':utf8');
        if (($extension eq 'text') || ($extension eq 'txt')) {
                if ($error_only) {
                        &dump_error_as_text();
@@ -863,7 +861,6 @@ if ($extension ne 'tsung') {
        if (not defined $fh) {
                die "FATAL: can't write to $outfile, $!\n";
        }
-       binmode($fh, ':utf8');
        print $fh "</sessions>\n";
        $fh->close();
 }
@@ -8113,7 +8110,6 @@ sub autodetect_format
        my $fmt    = '';
 
        die "FATAL: can't open file $file, $!\n" unless(open(TESTFILE, $file));
-       binmode(TESTFILE);
        my $fltf = <TESTFILE>;
        close($fltf);
        # is file in binary format ?