diff options
author | 2002-08-30 12:15:42 +0000 | |
---|---|---|
committer | 2002-08-30 12:15:42 +0000 | |
commit | 03f8584ead97b3bd75a623e84da0c0c4f27139c3 (patch) | |
tree | b288d1e9421141a9ec6775ed4351aaf1064c3aab /lib/libssl/src | |
parent | o) start new sentence on a new line; (diff) | |
download | wireguard-openbsd-03f8584ead97b3bd75a623e84da0c0c4f27139c3.tar.xz wireguard-openbsd-03f8584ead97b3bd75a623e84da0c0c4f27139c3.zip |
do not modify input files, allows ro source builds; tested by fries@
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/objects/objects.pl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/libssl/src/crypto/objects/objects.pl b/lib/libssl/src/crypto/objects/objects.pl index 76c06cc8f9a..76bb8da677b 100644 --- a/lib/libssl/src/crypto/objects/objects.pl +++ b/lib/libssl/src/crypto/objects/objects.pl @@ -107,12 +107,13 @@ while (<IN>) } close IN; -open (NUMOUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]"; -foreach (sort { $a <=> $b } keys %nidn) - { - print NUMOUT $nidn{$_},"\t\t",$_,"\n"; - } -close NUMOUT; +#XXX don't modify input files +#open (NUMOUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]"; +#foreach (sort { $a <=> $b } keys %nidn) +# { +# print NUMOUT $nidn{$_},"\t\t",$_,"\n"; +# } +#close NUMOUT; open (OUT,">$ARGV[2]") || die "Can't open output file $ARGV[2]"; print OUT <<'EOF'; |