mirror of
https://github.com/drwetter/testssl.sh.git
synced 2026-06-02 22:48:49 +02:00
fix shellcheck complaint
This commit is contained in:
+1
-3
@@ -22744,9 +22744,7 @@ get_https_rrecord() {
|
|||||||
fi
|
fi
|
||||||
if [[ ${line:8:2} == "01" ]]; then # Then comes SvcParamKeys, see rfc 14.3.2 which should be alpn=1
|
if [[ ${line:8:2} == "01" ]]; then # Then comes SvcParamKeys, see rfc 14.3.2 which should be alpn=1
|
||||||
alpnID+="\"" # double quote for clear text
|
alpnID+="\"" # double quote for clear text
|
||||||
else
|
fi
|
||||||
continue # If the 1st element is not alpn, next iteration of loop will fail for now
|
|
||||||
fi # Should we care as SvcParamKey!=alpn doesn't seems not very common?
|
|
||||||
len_alpnID="${line:12:2}" # length of alpn entries, e.g. 03 or 06
|
len_alpnID="${line:12:2}" # length of alpn entries, e.g. 03 or 06
|
||||||
alpnID_wire="${line:16:4}" # value of first entry
|
alpnID_wire="${line:16:4}" # value of first entry
|
||||||
alpnID="${alpnID}$(hex2ascii "$alpnID_wire")"
|
alpnID="${alpnID}$(hex2ascii "$alpnID_wire")"
|
||||||
|
|||||||
Reference in New Issue
Block a user