mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-01 06:19:44 +01:00
Revert to 2>&1 > /dev/null order because it isn't behaving correctly.
This commit is contained in:
parent
59ed025f36
commit
4cdc89aa61
@ -270,7 +270,7 @@ wait_kill(){
|
||||
pid=$1
|
||||
maxsleep=$2
|
||||
while true; do
|
||||
if ! ps $pid >/dev/null 2>&1; then
|
||||
if ! ps $pid 2>&1 >/dev/null ; then
|
||||
return 0 # didn't reach maxsleep yet
|
||||
fi
|
||||
sleep 1
|
||||
@ -702,7 +702,7 @@ sockread() {
|
||||
pid=$!
|
||||
|
||||
while true; do
|
||||
if ! ps $pid >/dev/null 2>&1; then
|
||||
if ! ps $pid 2>&1 >/dev/null ; then
|
||||
break # didn't reach maxsleep yet
|
||||
kill $pid >&2 2>/dev/null
|
||||
fi
|
||||
@ -712,7 +712,7 @@ sockread() {
|
||||
done
|
||||
#FIXME: cleanup, we have extra function for this now
|
||||
|
||||
if ps $pid >/dev/null 2&>1; then
|
||||
if ps $pid 2&>1 >/dev/null ; then
|
||||
# time's up and dd is still alive --> timeout
|
||||
kill $pid
|
||||
wait $pid 2>/dev/null
|
||||
@ -1460,7 +1460,7 @@ sockread_serverhello() {
|
||||
[[ $maxsleep -le 0 ]] && break
|
||||
done
|
||||
|
||||
if ps $pid >/dev/null 2>&1; then
|
||||
if ps $pid 2>&1 >/dev/null ; then
|
||||
# time's up and dd is still alive --> timeout
|
||||
kill $pid >&2 2>/dev/null
|
||||
wait $pid 2>/dev/null
|
||||
|
Loading…
Reference in New Issue
Block a user