aboutsummaryrefslogtreecommitdiffstats
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
commit0b9e68b80f266b36a743f930dab5665c41abc6a1 (patch)
tree5cb67de72151ebb6b394b3e7ff5761b260a19f03
parenta7ff1c2b86100839461ef3ad466eb4f0190381f7 (diff)
downloadprosody-0b9e68b80f266b36a743f930dab5665c41abc6a1.tar.gz
prosody-0b9e68b80f266b36a743f930dab5665c41abc6a1.zip
net.dns: Correctly apply lower bound of RTT (thanks Ge0rG)
-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]];