mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
set binary mode for some file handling and it might work better on some
cygwin installations (using DOS-style files somehow?)
This commit is contained in:
parent
b28b616eb2
commit
b125e8e23a
@ -95,6 +95,7 @@ sub loadtest {
|
|||||||
undef @xml;
|
undef @xml;
|
||||||
open(XML, "<$file") ||
|
open(XML, "<$file") ||
|
||||||
return 1; # failure!
|
return 1; # failure!
|
||||||
|
binmode XML; # for crapage systems, use binary
|
||||||
while(<XML>) {
|
while(<XML>) {
|
||||||
push @xml, $_;
|
push @xml, $_;
|
||||||
}
|
}
|
||||||
|
@ -637,7 +637,8 @@ sub singletest {
|
|||||||
subVariables \$fileContent;
|
subVariables \$fileContent;
|
||||||
# print "DEBUG: writing file " . $filename . "\n";
|
# print "DEBUG: writing file " . $filename . "\n";
|
||||||
open OUTFILE, ">$filename";
|
open OUTFILE, ">$filename";
|
||||||
print OUTFILE $fileContent;
|
binmode OUTFILE; # for crapage systems, use binary
|
||||||
|
print OUTFILE $fileContent;
|
||||||
close OUTFILE;
|
close OUTFILE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user