summaryrefslogtreecommitdiff
path: root/regress/try-ciphers.sh
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2004-06-22 20:53:02 -0700
committerTim Rice <tim@multitalents.net>2004-06-22 20:53:02 -0700
commitaf4ab6cbf57f8d43e62c7d1e74f922e54b1844b4 (patch)
treed641db260eea2e85273a879daf1a2d88de30461d /regress/try-ciphers.sh
parent0a9d43d7264ff0a74c4f9493be238e35ef04c952 (diff)
- (tim) [regress/try-ciphers.sh] "if ! some_command" is not portable.
Diffstat (limited to 'regress/try-ciphers.sh')
-rw-r--r--regress/try-ciphers.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh
index 15827e250..c6e1b9152 100644
--- a/regress/try-ciphers.sh
+++ b/regress/try-ciphers.sh
@@ -29,8 +29,10 @@ for c in $ciphers; do
29 fi 29 fi
30done 30done
31 31
32if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null 32if ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
33then 33then
34 :
35else
34 36
35echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy 37echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
36c=acss@openssh.org 38c=acss@openssh.org