Fix Archive-Tar tests on Win32 following change 24954
authorSteve Hay <SteveHay@planit.com>
Fri, 24 Jun 2005 07:42:41 +0000 (07:42 +0000)
committerSteve Hay <SteveHay@planit.com>
Fri, 24 Jun 2005 07:42:41 +0000 (07:42 +0000)
p4raw-id: //depot/perl@24970

lib/Archive/Tar/t/00_setup.t

index 6f5d871..876da3f 100644 (file)
@@ -11,6 +11,7 @@ binmode STDOUT;
 sub output {
     $file = shift;
     open F, '>', $file or die "Can't create $file: $!\n";
+    binmode F;
     for (@_) {
        print F pack "H*", $_;
     }