2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

type needed to be defined as dns_rdatatype_t instead of int in rdataset_totext()

This commit is contained in:
Danny Mayer
2001-06-27 04:30:37 +00:00
parent f215881bb0
commit 11c7a43642

View File

@@ -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 <config.h>
@@ -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));