0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-06 07:38:52 +02:00

authd: properly iterate through all outstanding rdns queries on timeout

This commit is contained in:
Elizabeth Myers 2016-03-10 08:43:46 -06:00
parent 9eb410b347
commit c70ae2e5cb

View file

@ -186,7 +186,6 @@ static void timeout_dns_queries_event(void *notused)
if(query->auth && query->timeout < rb_current_time()) if(query->auth && query->timeout < rb_current_time())
{ {
client_fail(query, REPORT_FAIL); client_fail(query, REPORT_FAIL);
return;
} }
} }
} }