summaryrefslogtreecommitdiff
path: root/scripts/install-sh
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2003-06-18 18:27:59 +0000
committerWerner Koch <wk@gnupg.org>2003-06-18 18:27:59 +0000
commit3c9d0b4898f05b9b494a8fa505d2c16b51483e4d (patch)
tree872e481fcdac200030b46d9b160c2eb1dc76decf /scripts/install-sh
parentb99f9e0dc418ed042c574328948a4f7827430454 (diff)
downloadlibgcrypt-3c9d0b4898f05b9b494a8fa505d2c16b51483e4d.tar.gz
* basic.c (check_cbc_mac_cipher): Adjusted for new API of get_blklen
and get_keylen. (check_ctr_cipher): Ditto. (check_one_cipher): Ditto. (check_one_md): Adjusted for new API of gcry_md_copy. * benchmark.c (cipher_bench): Adjusted for new API of get_blklen and get_keylen. * gcrypt.h (gcry_cipher_get_algo_blklen) (gcry_cipher_get_algo_keylen): Replaced macro by funcion. * cipher.c (gcry_cipher_get_algo_keylen): New. (gcry_cipher_get_algo_blklen): New.
Diffstat (limited to 'scripts/install-sh')
-rwxr-xr-xscripts/install-sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-sh b/scripts/install-sh
index 398a88e1..11870f1b 100755
--- a/scripts/install-sh
+++ b/scripts/install-sh
@@ -128,7 +128,7 @@ else
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
- if [ -f $src -o -d $src ]
+ if [ -f "$src" ] || [ -d "$src" ]
then
:
else