From 11c7a43642def4aaa2bed001ff018a0bb0b65c29 Mon Sep 17 00:00:00 2001 From: Danny Mayer Date: Wed, 27 Jun 2001 04:30:37 +0000 Subject: [PATCH] type needed to be defined as dns_rdatatype_t instead of int in rdataset_totext() --- lib/dns/masterdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/masterdump.c b/lib/dns/masterdump.c index 375568a2aa..c47d346e67 100644 --- a/lib/dns/masterdump.c +++ b/lib/dns/masterdump.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: masterdump.c,v 1.50 2001/04/26 21:17:55 gson Exp $ */ +/* $Id: masterdump.c,v 1.51 2001/06/27 04:30:37 mayer Exp $ */ #include @@ -356,7 +356,7 @@ rdataset_totext(dns_rdataset_t *rdataset, isc_boolean_t first = ISC_TRUE; isc_uint32_t current_ttl; isc_boolean_t current_ttl_valid; - int type; + dns_rdatatype_t type; REQUIRE(DNS_RDATASET_VALID(rdataset));