mirror of
https://github.com/moparisthebest/curl
synced 2024-11-12 04:25:08 -05:00
Fixed CR issue with Win32 version on MSYS.
This commit is contained in:
parent
e1711b0e9a
commit
5d80017fd6
@ -14,7 +14,7 @@ my $curl_protocols="";
|
||||
open(CURL, "$ARGV[1]") || die "Can't get curl $what list\n";
|
||||
while( <CURL> )
|
||||
{
|
||||
$curl_protocols = lc($_) if ( /$what:/i );
|
||||
$curl_protocols = lc($_ =~ s/\r//) if ( /$what:/i );
|
||||
}
|
||||
close CURL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user