- (tim) [regress/try-ciphers.sh] "if ! some_command" is not portable.

This commit is contained in:
Tim Rice 2004-06-22 20:53:02 -07:00
parent 0a9d43d726
commit af4ab6cbf5
2 changed files with 5 additions and 2 deletions

View File

@ -18,6 +18,7 @@
-Wshadow change.
- (dtucker) [auth.c openbsd-compat/port-aix.c openbsd-compat/port-aix.h]
Move loginrestrictions test to port-aix.c, replace with a generic hook.
- (tim) [regress/try-ciphers.sh] "if ! some_command" is not portable.
20040622
- (bal) [auth-passwd.c auth1.c] Clean up unused variables.
@ -1390,4 +1391,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3439 2004/06/23 03:45:24 dtucker Exp $
$Id: ChangeLog,v 1.3440 2004/06/23 03:53:02 tim Exp $

View File

@ -29,8 +29,10 @@ for c in $ciphers; do
fi
done
if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
if ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
then
:
else
echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
c=acss@openssh.org