- (tim) [regress/cipher-speed.sh regress/try-ciphers.sh] shell portability fix.
This commit is contained in:
parent
dae85cc3ad
commit
c08b3ef6f4
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue