- (tim) [regress/cipher-speed.sh regress/try-ciphers.sh] shell portability fix.

This commit is contained in:
Tim Rice 2013-02-19 11:53:29 -08:00
parent dae85cc3ad
commit c08b3ef6f4
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
20130220
- (tim) [regress/cipher-speed.sh regress/try-ciphers.sh] shell portability fix.
20130219
- OpenBSD CVS Sync
- djm@cvs.openbsd.org 2013/02/18 22:26:47

View File

@ -40,7 +40,7 @@ for c in $ciphers; do n=0; for m in $macs; do
case $c in
aes*-gcm@openssh.com) test $n -gt 0 && break;;
esac
n=$(($n + 1))
n=`expr $n + 1`
done; done
ciphers="3des blowfish"

View File

@ -32,7 +32,7 @@ for c in $ciphers; do
case $c in
aes*-gcm@openssh.com) test $n -gt 0 && break;;
esac
n=$(($n + 1))
n=`expr $n + 1`
done
done