mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-04 15:03:41 +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
|
||||
test_cipher_on_target() {
|
||||
local sslcommand=$@
|
||||
local sslcommand="$*"
|
||||
cipher=""
|
||||
local cmnd=""
|
||||
protocols=""
|
||||
|
Loading…
Reference in New Issue
Block a user