X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=VMS%2Ftranslatesyms.pl;fp=VMS%2Ftranslatesyms.pl;h=de3db6ccaf5cee6e56ebd6077c6f8f36bf64dbbf;hb=9ba96fbb2523cb12747c559c704c58bd8f9e7982;hp=8ffdbd8aa8ca8afa1b567a41345a29ee6948bf99;hpb=c15e95a61dacfc326cf9cdf05935ae8c6c97bcf6;p=openssl.git diff --git a/VMS/translatesyms.pl b/VMS/translatesyms.pl index 8ffdbd8aa8..de3db6ccaf 100644 --- a/VMS/translatesyms.pl +++ b/VMS/translatesyms.pl @@ -28,7 +28,7 @@ my %translations = (); open DEMANGLER_DATA, $ARGV[0] or die "Couldn't open $ARGV[0]: $!\n"; while() { - chomp; + s|\R$||; (my $translated, my $original) = split /\$/; $translations{$original} = $translated.'$'; }