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-06-11 23:44:40 +0400
committerRichard Levitte <levitte@openssl.org>2003-06-11 23:44:40 +0400
commitf19d064087e23e5f2b12707e2e9fe237cf1fc813 (patch)
tree8d66c92840bc924edecd00ec8ec7a0507020b25f /util
parent25a1259911b98a22910725250e85de8f740f30b5 (diff)
Handle des_modes.pod properly.
PR: 634
Diffstat (limited to 'util')
-rw-r--r--util/extract-names.pl4
-rwxr-xr-xutil/point.sh6
2 files changed, 5 insertions, 5 deletions
diff --git a/util/extract-names.pl b/util/extract-names.pl
index d413a045cc..9f2ad5ef16 100644
--- a/util/extract-names.pl
+++ b/util/extract-names.pl
@@ -9,8 +9,8 @@ while(<STDIN>) {
} elsif ($name) {
if (/ - /) {
s/ - .*//;
- s/[ \t,]+/ /g;
- push @words, split ' ';
+ s/,[ \t]+/,/g;
+ push @words, split ',';
}
}
if (/^=head1 *NAME *$/) {
diff --git a/util/point.sh b/util/point.sh
index ce7dcc56df..4790e08f8a 100755
--- a/util/point.sh
+++ b/util/point.sh
@@ -1,10 +1,10 @@
#!/bin/sh
-rm -f $2
+rm -f "$2"
if test "$OSTYPE" = msdosdjgpp; then
- cp $1 $2
+ cp "$1" "$2"
else
- ln -s $1 $2
+ ln -s "$1" "$2"
fi
echo "$2 => $1"