aboutsummaryrefslogtreecommitdiffstats
path: root/net/dns.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-09-24 01:04:56 +0200
committerKim Alvefur <zash@zash.se>2017-09-24 01:04:56 +0200
commit11402a46bb145ad626c775f02d15d6a68b48ec1d (patch)
tree5cb67de72151ebb6b394b3e7ff5761b260a19f03 /net/dns.lua
parent9bb6847d26e2a0d312feb16a9f632836deccff2e (diff)
downloadprosody-11402a46bb145ad626c775f02d15d6a68b48ec1d.tar.gz
prosody-11402a46bb145ad626c775f02d15d6a68b48ec1d.zip
net.dns: Correctly apply lower bound of RTT (thanks Ge0rG)
Diffstat (limited to 'net/dns.lua')
-rw-r--r--net/dns.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns.lua b/net/dns.lua
index 188bdf43..5ba3db0e 100644
--- a/net/dns.lua
+++ b/net/dns.lua
@@ -504,7 +504,7 @@ function resolver:rr() -- - - - - - - - - - - - - - - - - - - - - - - - rr
rr.ttl = 0x10000*self:word() + self:word();
rr.rdlength = self:word();
- rr.tod = self.time + math.min(rr.ttl, 1);
+ rr.tod = self.time + math.max(rr.ttl, 1);
local remember = self.offset;
local rr_parser = self[dns.type[rr.type]];