From b125e8e23a0212dba4cc3c19a2b744c2241b74e1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 19 Mar 2003 09:26:29 +0000 Subject: set binary mode for some file handling and it might work better on some cygwin installations (using DOS-style files somehow?) --- tests/getpart.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/getpart.pm') diff --git a/tests/getpart.pm b/tests/getpart.pm index 7449be983..79287524e 100644 --- a/tests/getpart.pm +++ b/tests/getpart.pm @@ -95,6 +95,7 @@ sub loadtest { undef @xml; open(XML, "<$file") || return 1; # failure! + binmode XML; # for crapage systems, use binary while() { push @xml, $_; } -- cgit v1.2.3