summaryrefslogtreecommitdiffstats
path: root/util/extract-names.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-06-11 19:44:37 +0000
committerRichard Levitte <levitte@openssl.org>2003-06-11 19:44:37 +0000
commit490967195a57553c2a8f6606d2a34f86d80b0257 (patch)
treefbf411e56e4806596fb7a1fa9cc5504fa70d8055 /util/extract-names.pl
parent606c8048a08d424663ff69045ba3f657a3e38d72 (diff)
Handle des_modes.pod properly.
PR: 634
Diffstat (limited to 'util/extract-names.pl')
-rw-r--r--util/extract-names.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/extract-names.pl b/util/extract-names.pl
index d413a045cc..9f2ad5ef16 100644
--- a/util/extract-names.pl
+++ b/util/extract-names.pl
@@ -9,8 +9,8 @@ while(<STDIN>) {
} elsif ($name) {
if (/ - /) {
s/ - .*//;
- s/[ \t,]+/ /g;
- push @words, split ' ';
+ s/,[ \t]+/,/g;
+ push @words, split ',';
}
}
if (/^=head1 *NAME *$/) {