summaryrefslogtreecommitdiff
path: root/regress/try-ciphers.sh
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2013-02-19 11:53:29 -0800
committerTim Rice <tim@multitalents.net>2013-02-19 11:53:29 -0800
commitc08b3ef6f435b64c3b7125f93e5b3e661e019f3e (patch)
tree15152ccd181b1c92db18010dba408c749b8fddde /regress/try-ciphers.sh
parentdae85cc3ad02a068b58f42fddc2ccc4f3a9b8311 (diff)
- (tim) [regress/cipher-speed.sh regress/try-ciphers.sh] shell portability fix.
Diffstat (limited to 'regress/try-ciphers.sh')
-rw-r--r--regress/try-ciphers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh
index 87ec7497a..084a1457a 100644
--- a/regress/try-ciphers.sh
+++ b/regress/try-ciphers.sh
@@ -32,7 +32,7 @@ for c in $ciphers; do
32 case $c in 32 case $c in
33 aes*-gcm@openssh.com) test $n -gt 0 && break;; 33 aes*-gcm@openssh.com) test $n -gt 0 && break;;
34 esac 34 esac
35 n=$(($n + 1)) 35 n=`expr $n + 1`
36 done 36 done
37done 37done
38 38