Commit 5d80017f authored by Guenter Knauf's avatar Guenter Knauf
Browse files

Fixed CR issue with Win32 version on MSYS.

parent e1711b0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;