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:
Richard Soderberg 2015-09-05 04:33:06 -07:00
parent bc79c51065
commit 24268e063e
1 changed files with 1 additions and 1 deletions

View File

@ -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=""