mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-21 22:28:34 -04:00
type needed to be defined as dns_rdatatype_t instead of int in rdataset_totext()
This commit is contained in:
parent
f215881bb0
commit
11c7a43642
1 changed files with 2 additions and 2 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue