diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regress/try-ciphers.sh | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -31,6 +31,8 @@ | |||
31 | - dtucker@cvs.openbsd.org 2004/02/28 13:44:45 | 31 | - dtucker@cvs.openbsd.org 2004/02/28 13:44:45 |
32 | [regress/try-ciphers.sh] | 32 | [regress/try-ciphers.sh] |
33 | Test acss too; ok markus@ | 33 | Test acss too; ok markus@ |
34 | - (dtucker) [regress/try-ciphers.sh] Skip acss if not compiled in (eg if we | ||
35 | built with openssl < 0.9.7) | ||
34 | 36 | ||
35 | 20040226 | 37 | 20040226 |
36 | - (bal) KNF our sshlogin.c even if the code looks nothing like upstream | 38 | - (bal) KNF our sshlogin.c even if the code looks nothing like upstream |
@@ -836,4 +838,4 @@ | |||
836 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 838 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
837 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 839 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
838 | 840 | ||
839 | $Id: ChangeLog,v 1.3269 2004/02/29 09:38:26 dtucker Exp $ | 841 | $Id: ChangeLog,v 1.3270 2004/02/29 10:30:05 dtucker Exp $ |
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh index 103f410a8..15827e250 100644 --- a/regress/try-ciphers.sh +++ b/regress/try-ciphers.sh | |||
@@ -29,6 +29,9 @@ for c in $ciphers; do | |||
29 | fi | 29 | fi |
30 | done | 30 | done |
31 | 31 | ||
32 | if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null | ||
33 | then | ||
34 | |||
32 | echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy | 35 | echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy |
33 | c=acss@openssh.org | 36 | c=acss@openssh.org |
34 | for m in $macs; do | 37 | for m in $macs; do |
@@ -39,3 +42,5 @@ for m in $macs; do | |||
39 | fail "ssh -2 failed with mac $m cipher $c" | 42 | fail "ssh -2 failed with mac $m cipher $c" |
40 | fi | 43 | fi |
41 | done | 44 | done |
45 | |||
46 | fi | ||