From: Richard Levitte Date: Thu, 25 Mar 2004 19:52:34 +0000 (+0000) Subject: Change spaces to symbols in names. X-Git-Tag: OpenSSL_0_9_7e~130^2~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c2dc3ee8d9f9662486fba8c450ed8ac8251357e1;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 ','; } }