mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-03 23:39:45 +01:00
correctly capture return code in starttls_full_read
This commit is contained in:
parent
ba9c056dfc
commit
55bbeef36c
@ -6843,7 +6843,7 @@ starttls_full_read(){
|
||||
|
||||
local oldIFS="$IFS"
|
||||
IFS=''
|
||||
while read -r -t $STARTTLS_SLEEP one_line; do
|
||||
while read -r -t $STARTTLS_SLEEP one_line; ret=$?; (exit $ret); do
|
||||
debugme echo "S: ${one_line}"
|
||||
if [[ $# -ge 3 ]]; then
|
||||
if [[ ${one_line} =~ $3 ]]; then
|
||||
@ -6863,7 +6863,6 @@ starttls_full_read(){
|
||||
return 2
|
||||
fi
|
||||
done <&5
|
||||
ret=$?
|
||||
debugme echo "=== full read error/timeout ==="
|
||||
IFS="${oldIFS}"
|
||||
return $ret
|
||||
|
Loading…
Reference in New Issue
Block a user