mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 00:19:59 -04:00
Add missed ret!=0 checks
This commit is contained in:
parent
dcf118f0a6
commit
77278beaf3
1 changed files with 4 additions and 0 deletions
|
|
@ -672,6 +672,8 @@ EOF
|
|||
echo_i "ns4 $rr4 expected 0"
|
||||
ret=1
|
||||
}
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=$((status + ret))
|
||||
|
||||
echo_i "checking UPDATE_QUERY message counts"
|
||||
ret=0
|
||||
|
|
@ -794,6 +796,8 @@ EOF
|
|||
echo_i "ns4 $rr4 expected 0"
|
||||
ret=1
|
||||
}
|
||||
if [ $ret != 0 ]; then echo_i "failed"; fi
|
||||
status=$((status + ret))
|
||||
|
||||
echo_i "checking UPDATE_QUERY message counts"
|
||||
ret=0
|
||||
|
|
|
|||
Loading…
Reference in a new issue