mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 14:23: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"
|
sslcommand+=" -status $SCLIENTARGS -connect $TARGET -cipher $ciphersuite"
|
||||||
|
|
||||||
test_cipher_on_target "$sslcommand"
|
test_cipher_on_target "$sslcommand"
|
||||||
if [[ $? -ne 0 ]]; then
|
if (( $? != 0 )); then
|
||||||
serverside="True"
|
serverside="True"
|
||||||
else
|
else
|
||||||
local selected=($result)
|
local selected=($result)
|
||||||
|
Loading…
Reference in New Issue
Block a user