From: Mark Andrews Date: Tue, 27 Nov 2001 00:51:09 +0000 (+0000) Subject: pullup: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f7ff09bc33d693e7400d8ded4e98bd76c8b3b1c;p=thirdparty%2Fbind9.git pullup: 1136. [bug] CNAME records synthesized from DNAMEs did not have a TTL of zero as required by RFC2672 [RT #2129] --- diff --git a/CHANGES b/CHANGES index b525ba5ecd1..20a00a4a50c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1136. [bug] CNAME records synthesized from DNAMEs did not + have a TTL of zero as required by RFC2672 + [RT #2129] + 1134. [bug] Multithreaded servers could deadlock in ferror() when reloading zone files. [RT #1951, #1998] diff --git a/bin/named/query.c b/bin/named/query.c index 144c2a70578..1713079eda0 100644 --- a/bin/named/query.c +++ b/bin/named/query.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: query.c,v 1.163.2.6 2001/11/15 01:30:46 marka Exp $ */ +/* $Id: query.c,v 1.163.2.7 2001/11/27 00:51:09 marka Exp $ */ #include @@ -2974,7 +2974,7 @@ query_find(ns_client_t *client, dns_fetchevent_t *event) { */ dns_name_init(tname, NULL); query_addcname(client, client->query.qname, fname, - trdataset->ttl, &tname); + 0, &tname); if (tname != NULL) dns_message_puttempname(client->message, &tname); /*