From: Richard Levitte Date: Thu, 25 Mar 2004 19:52:36 +0000 (+0000) Subject: Change spaces to symbols in names. X-Git-Tag: OpenSSL_0_9_7e~136 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e6784a47e9eeb0c60e8247338b507c00a5695016;p=oweals%2Fopenssl.git Change spaces to symbols in names. PR: 856 --- diff --git a/util/extract-names.pl b/util/extract-names.pl index 744a8e2324..35bd6ed843 100644 --- a/util/extract-names.pl +++ b/util/extract-names.pl @@ -9,9 +9,11 @@ while() { } elsif ($name) { if (/ - /) { s/ - .*//; - s/,[ \t]+/,/g; - s/^[ \t]+//g; - s/[ \t]+$//g; + s/,\s+/,/g; + s/\s+,/,/g; + s/^\s+//g; + s/\s+$//g; + s/\s/_/g; push @words, split ','; } }