net.dns: Don't expire records with TTL of 0 instantly

This commit is contained in:
Matthew Wild 2009-10-21 00:01:50 +01:00
parent 22cd9aadf6
commit 1d89d7c92c

View file

@ -443,7 +443,7 @@ function resolver:rr () -- - - - - - - - - - - - - - - - - - - - - - - - rr
rr.ttl = 0x10000*self:word () + self:word ()
rr.rdlength = self:word ()
if rr.ttl <= 0 then rr.tod = self.time;
if rr.ttl <= 0 then rr.tod = self.time + 30;
else rr.tod = self.time + rr.ttl end
local remember = self.offset