Fix a bug I introduced during the TR conversion. NXDOMAIN was falling off the end of the match.

This commit is contained in:
Tony Garnock-Jones 2013-03-25 13:12:28 -04:00
parent 1439d621ab
commit 3273603406
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@
UdpAddress)])
(remove server-ip addrs)))])
w))]
[(? complete-answer? ans)
[(and (or (? complete-answer?) #f) ans)
(transition: w : NetworkQueryState
(send-message (network-reply (network-request-unique-id (network-query-state-request w))
ans)))]))