summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util
diff options
context:
space:
mode:
authormarkus <>2004-04-07 20:42:12 +0000
committermarkus <>2004-04-07 20:42:12 +0000
commitcbf88de39286be06cd20e0c65b6cb7633dce25a5 (patch)
treecb12a4cb9d300ed3fa5ac3bc6fdba7773235dfd4 /src/lib/libcrypto/util
parenta4ab668c13b41cdc59a6f7dc9cf6c88c39d2466b (diff)
parent00b426069b0dfa8f0d9b87308646e9684f45c515 (diff)
downloadopenbsd-cbf88de39286be06cd20e0c65b6cb7633dce25a5.tar.gz
openbsd-cbf88de39286be06cd20e0c65b6cb7633dce25a5.tar.bz2
openbsd-cbf88de39286be06cd20e0c65b6cb7633dce25a5.zip
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/util')
-rw-r--r--src/lib/libcrypto/util/extract-names.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/extract-names.pl b/src/lib/libcrypto/util/extract-names.pl
index 9f2ad5ef16..744a8e2324 100644
--- a/src/lib/libcrypto/util/extract-names.pl
+++ b/src/lib/libcrypto/util/extract-names.pl
@@ -10,6 +10,8 @@ while(<STDIN>) {
10 if (/ - /) { 10 if (/ - /) {
11 s/ - .*//; 11 s/ - .*//;
12 s/,[ \t]+/,/g; 12 s/,[ \t]+/,/g;
13 s/^[ \t]+//g;
14 s/[ \t]+$//g;
13 push @words, split ','; 15 push @words, split ',';
14 } 16 }
15 } 17 }