mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 22:33:40 +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:
parent
bc79c51065
commit
24268e063e
@ -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=""
|
||||||
|
Loading…
Reference in New Issue
Block a user