- (dtucker) [regress/try-ciphers.sh] Skip acss if not compiled in (eg if we
built with openssl < 0.9.7)
This commit is contained in:
parent
9468ba33a1
commit
b099d855d3
|
@ -31,6 +31,8 @@
|
||||||
- dtucker@cvs.openbsd.org 2004/02/28 13:44:45
|
- dtucker@cvs.openbsd.org 2004/02/28 13:44:45
|
||||||
[regress/try-ciphers.sh]
|
[regress/try-ciphers.sh]
|
||||||
Test acss too; ok markus@
|
Test acss too; ok markus@
|
||||||
|
- (dtucker) [regress/try-ciphers.sh] Skip acss if not compiled in (eg if we
|
||||||
|
built with openssl < 0.9.7)
|
||||||
|
|
||||||
20040226
|
20040226
|
||||||
- (bal) KNF our sshlogin.c even if the code looks nothing like upstream
|
- (bal) KNF our sshlogin.c even if the code looks nothing like upstream
|
||||||
|
@ -836,4 +838,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3269 2004/02/29 09:38:26 dtucker Exp $
|
$Id: ChangeLog,v 1.3270 2004/02/29 10:30:05 dtucker Exp $
|
||||||
|
|
|
@ -29,6 +29,9 @@ for c in $ciphers; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
|
||||||
|
then
|
||||||
|
|
||||||
echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
|
echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
|
||||||
c=acss@openssh.org
|
c=acss@openssh.org
|
||||||
for m in $macs; do
|
for m in $macs; do
|
||||||
|
@ -39,3 +42,5 @@ for m in $macs; do
|
||||||
fail "ssh -2 failed with mac $m cipher $c"
|
fail "ssh -2 failed with mac $m cipher $c"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in New Issue