mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-04 15:03:41 +01:00
Fixes instances of "SC2053: Quote the rhs of == in [[ ]] to prevent glob matching."
In cipherscan line 469: if [[ ${known_certs[$cksum]} == $cert ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching. In cipherscan line 852: if [[ $selected == $prefered ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching. In cipherscan line 915: if [[ "$cname" == ${curves[$id]} ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching.
This commit is contained in:
parent
24268e063e
commit
b2521c8e42
@ -503,7 +503,7 @@ test_cipher_on_target() {
|
||||
local cksum=($(cksum <<<"$cert"))
|
||||
# compare the values not just checksums so that eventual collision
|
||||
# doesn't mess up results
|
||||
if [[ ${known_certs[$cksum]} == $cert ]]; then
|
||||
if [[ ${known_certs[$cksum]} == "$cert" ]]; then
|
||||
if [[ -n "${current_certificates}" ]]; then
|
||||
current_certificates+=","
|
||||
fi
|
||||
@ -886,7 +886,7 @@ test_serverside_ordering() {
|
||||
serverside="True"
|
||||
else
|
||||
local selected=($result)
|
||||
if [[ $selected == $prefered ]]; then
|
||||
if [[ $selected == "$prefered" ]]; then
|
||||
serverside="False"
|
||||
else
|
||||
serverside="True"
|
||||
@ -949,7 +949,7 @@ test_curves() {
|
||||
current_curves+="$cname"
|
||||
fi
|
||||
for id in "${!curves[@]}"; do
|
||||
if [[ "$cname" == ${curves[$id]} ]]; then
|
||||
if [[ $cname == "${curves[$id]}" ]]; then
|
||||
# we know it's supported, remove it from set of offered ones
|
||||
unset curves[$id]
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user