Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-10-02 14:55:25 +0400
committerRichard Levitte <levitte@openssl.org>2003-10-02 14:55:25 +0400
commit95a64aa4b8a0bfbfa15a65fe325ee09ad3e033ee (patch)
tree5a539b459673c07e6010efb20f424e1e877d7560 /util
parent80be2f484f40c400df739fc8bd804247a2253ddf (diff)
Recent changes from 0.9.7-stable
Diffstat (limited to 'util')
-rw-r--r--util/extract-names.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/extract-names.pl b/util/extract-names.pl
index 9f2ad5ef16..744a8e2324 100644
--- a/util/extract-names.pl
+++ b/util/extract-names.pl
@@ -10,6 +10,8 @@ while(<STDIN>) {
if (/ - /) {
s/ - .*//;
s/,[ \t]+/,/g;
+ s/^[ \t]+//g;
+ s/[ \t]+$//g;
push @words, split ',';
}
}