# HG changeset patch # User Matthew Wild # Date 1259802786 0 # Node ID 08343033058529f920bcc27e7e72710ddd61b7b9 # Parent 2bddf8b766f70f445f6ed80091fddcb7110c36da net.dns: Fix for blocking dns lookups to find waiting coroutines correctly (not that we use this in Prosody...) diff -r 2bddf8b766f7 -r 083430330585 net/dns.lua --- a/net/dns.lua Thu Dec 03 01:10:08 2009 +0000 +++ b/net/dns.lua Thu Dec 03 01:13:06 2009 +0000 @@ -745,7 +745,7 @@ if not next(self.active) then self:closeall(); end -- was the query on the wanted list? - local q = response.question; + local q = response.question[1]; local cos = get(self.wanted, q.class, q.type, q.name); if cos then for co in pairs(cos) do