mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-04 15:03:41 +01:00
Replace instances of string-ish [[ -ne ]] with arithmetic (( != )).
This commit is contained in:
parent
3d3789828b
commit
34ae0ccab9
@ -883,7 +883,7 @@ test_serverside_ordering() {
|
||||
sslcommand+=" -status $SCLIENTARGS -connect $TARGET -cipher $ciphersuite"
|
||||
|
||||
test_cipher_on_target "$sslcommand"
|
||||
if [[ $? -ne 0 ]]; then
|
||||
if (( $? != 0 )); then
|
||||
serverside="True"
|
||||
else
|
||||
local selected=($result)
|
||||
|
Loading…
Reference in New Issue
Block a user