diff options
author | markus <> | 2003-11-11 21:22:16 +0000 |
---|---|---|
committer | markus <> | 2003-11-11 21:22:16 +0000 |
commit | fd84abe5019daf5a6869e1d12702e3e11b7a81bc (patch) | |
tree | 03feb4834f445bfefefaf10e53418c5bb708c9c0 /src/lib/libcrypto/util/point.sh | |
parent | 9cea7b85baecb1a02a3ea617de73d9693a9792eb (diff) | |
download | openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.tar.gz openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.tar.bz2 openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.zip |
import 0.9.7c
Diffstat (limited to 'src/lib/libcrypto/util/point.sh')
-rw-r--r-- | src/lib/libcrypto/util/point.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/util/point.sh b/src/lib/libcrypto/util/point.sh index ce7dcc56df..4790e08f8a 100644 --- a/src/lib/libcrypto/util/point.sh +++ b/src/lib/libcrypto/util/point.sh | |||
@@ -1,10 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | rm -f $2 | 3 | rm -f "$2" |
4 | if test "$OSTYPE" = msdosdjgpp; then | 4 | if test "$OSTYPE" = msdosdjgpp; then |
5 | cp $1 $2 | 5 | cp "$1" "$2" |
6 | else | 6 | else |
7 | ln -s $1 $2 | 7 | ln -s "$1" "$2" |
8 | fi | 8 | fi |
9 | echo "$2 => $1" | 9 | echo "$2 => $1" |
10 | 10 | ||