diff options
Diffstat (limited to 'src/lib/libcrypto/util')
-rw-r--r-- | src/lib/libcrypto/util/extract-names.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/util/extract-names.pl b/src/lib/libcrypto/util/extract-names.pl index d413a045cc..9f2ad5ef16 100644 --- a/src/lib/libcrypto/util/extract-names.pl +++ b/src/lib/libcrypto/util/extract-names.pl | |||
@@ -9,8 +9,8 @@ while(<STDIN>) { | |||
9 | } elsif ($name) { | 9 | } elsif ($name) { |
10 | if (/ - /) { | 10 | if (/ - /) { |
11 | s/ - .*//; | 11 | s/ - .*//; |
12 | s/[ \t,]+/ /g; | 12 | s/,[ \t]+/,/g; |
13 | push @words, split ' '; | 13 | push @words, split ','; |
14 | } | 14 | } |
15 | } | 15 | } |
16 | if (/^=head1 *NAME *$/) { | 16 | if (/^=head1 *NAME *$/) { |