diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-24 07:42:41 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-24 07:42:41 +0000 |
commit | eccb17a3c3307b4517c0ce5f378c20d514338662 (patch) | |
tree | c5ef6219c10630d53c9271b83557c09cf67c509f /lib | |
parent | d306033fc9a0aed1985a0ad2603732472b935e1f (diff) | |
download | perl-eccb17a3c3307b4517c0ce5f378c20d514338662.tar.gz |
Fix Archive-Tar tests on Win32 following change 24954
p4raw-id: //depot/perl@24970
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Archive/Tar/t/00_setup.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Archive/Tar/t/00_setup.t b/lib/Archive/Tar/t/00_setup.t index 6f5d871c9a..876da3fdff 100644 --- a/lib/Archive/Tar/t/00_setup.t +++ b/lib/Archive/Tar/t/00_setup.t @@ -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*", $_; } |