From 69feefe246aff8fe8fee60fb6660185c1600df6c Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 14 Apr 2000 17:28:21 +0000 Subject: [PATCH] META type hack no longer needed --- lib/dns/rdata.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/dns/rdata.c b/lib/dns/rdata.c index 81f852b39a..98a4b705fa 100644 --- a/lib/dns/rdata.c +++ b/lib/dns/rdata.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: rdata.c,v 1.74 2000/04/07 03:54:04 explorer Exp $ */ +/* $Id: rdata.c,v 1.75 2000/04/14 17:28:21 bwelling Exp $ */ #include @@ -1556,9 +1556,6 @@ static isc_boolean_t ismeta(unsigned int code, struct tbl *table) { struct tbl *t; REQUIRE(code < 65536); - /* XXXBEW Yes, this is a hack. But otherwise TKEY will not work */ - if (code == dns_rdatatype_tsig || code == dns_rdatatype_tkey) - return (ISC_TRUE); for (t = table; t->name != NULL; t++) { if (code == t->value) return ((t->flags & META) ? ISC_TRUE : ISC_FALSE);