cosmetic improvement to #551

This commit is contained in:
Dirk 2016-12-13 12:38:20 +01:00
parent 7f3b1de737
commit f30dab9e2f
1 changed files with 7 additions and 3 deletions

View File

@ -6490,9 +6490,12 @@ parse_sslv2_serverhello() {
# [cipher spec length] ==> ciphers GOOD: HERE ARE ALL CIPHERS ALREADY!
local ret=3
local parse_complete="false"
if [[ "$2" == "true" ]]; then
echo "======================================" > $TMPFILE
parse_complete=true
fi
"$parse_complete" && echo "======================================" > $TMPFILE
v2_hello_ascii=$(hexdump -v -e '16/1 "%02X"' $1)
[[ "$DEBUG" -ge 5 ]] && echo "$v2_hello_ascii"
@ -6528,7 +6531,8 @@ parse_sslv2_serverhello() {
fi
fi
[[ "$2" == "true" ]] || return $ret
"$parse_complete" || return $ret
rm -f $HOSTCERT $TEMPDIR/intermediatecerts.pem
if [[ $ret -eq 3 ]]; then
certificate_len=2*$(hex2dec "$v2_hello_cert_length")