mirror of
https://github.com/mozilla/cipherscan.git
synced 2026-02-05 22:55:15 +01:00
Fixes one instance of "SC2124: Assigning an array to a string! Assign as array, or use * instead of @ to concatenate."
In cipherscan line 427:
local sslcommand=$@
^-- SC2124: Assigning an array to a string! Assign as array, or use * instead of @ to concatenate.
This commit is contained in:
@@ -461,7 +461,7 @@ parse_openssl_output() {
|
|||||||
|
|
||||||
# Connect to a target host with the selected ciphersuite
|
# Connect to a target host with the selected ciphersuite
|
||||||
test_cipher_on_target() {
|
test_cipher_on_target() {
|
||||||
local sslcommand=$@
|
local sslcommand="$*"
|
||||||
cipher=""
|
cipher=""
|
||||||
local cmnd=""
|
local cmnd=""
|
||||||
protocols=""
|
protocols=""
|
||||||
|
|||||||
Reference in New Issue
Block a user