From: Richard Levitte Date: Wed, 1 Oct 2003 15:04:13 +0000 (+0000) Subject: Remove leading and trailing spaces and tabs X-Git-Tag: BEN_FIPS_TEST_4^2~11^2~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d8148fa98145847aacd8feea593823c2386b1b0;p=thirdparty%2Fopenssl.git Remove leading and trailing spaces and tabs --- diff --git a/util/extract-names.pl b/util/extract-names.pl index 9f2ad5ef166..744a8e2324e 100644 --- a/util/extract-names.pl +++ b/util/extract-names.pl @@ -10,6 +10,8 @@ while() { if (/ - /) { s/ - .*//; s/,[ \t]+/,/g; + s/^[ \t]+//g; + s/[ \t]+$//g; push @words, split ','; } }