From 7dbd30979997031ddd539f3543c6d2f9234f7978 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 2 Jul 2014 14:12:46 +1000 Subject: [PATCH] be consistent about expire time --- lib/dns/nta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/nta.c b/lib/dns/nta.c index 71b4967aae..447a4ce97b 100644 --- a/lib/dns/nta.c +++ b/lib/dns/nta.c @@ -444,7 +444,7 @@ dns_ntatable_covered(dns_ntatable_t *ntatable, isc_stdtime_t now, } if (result == ISC_R_SUCCESS) { nta = (dns_nta_t *) node->data; - answer = ISC_TF(nta->expiry > now); + answer = ISC_TF(nta->expiry >= now); } /* Deal with expired NTA */