aboutsummaryrefslogtreecommitdiffstats
path: root/util/extract-names.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-10-01 15:04:13 +0000
committerRichard Levitte <levitte@openssl.org>2003-10-01 15:04:13 +0000
commit4d8148fa98145847aacd8feea593823c2386b1b0 (patch)
treec54aedafde26b4d7de86da108f77a3faf48426bc /util/extract-names.pl
parentaed29ce5eaaea7460c3c43c1006e4fdc3a4c6e51 (diff)
downloadopenssl-4d8148fa98145847aacd8feea593823c2386b1b0.tar.gz
Remove leading and trailing spaces and tabs
Diffstat (limited to 'util/extract-names.pl')
-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 ',';
}
}