2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Replace custom isc_u?intNN_t types with C99 u?intNN_t types

This commit is contained in:
Ondřej Surý
2018-03-28 14:19:37 +02:00
parent 055278c936
commit cb6a185c69
390 changed files with 2812 additions and 2528 deletions

View File

@@ -47,6 +47,8 @@
/*! \file */
#include <config.h>
#include <inttypes.h>
#include <string.h>
#include <isc/buffer.h>
@@ -1781,7 +1783,7 @@ dns_sdlzssumatch(const dns_name_t *signer, const dns_name_t *name,
char b_key[DST_KEY_FORMATSIZE];
isc_buffer_t *tkey_token = NULL;
isc_region_t token_region = { NULL, 0 };
isc_uint32_t token_len = 0;
uint32_t token_len = 0;
isc_boolean_t ret;
REQUIRE(driverarg != NULL);
@@ -2022,7 +2024,7 @@ dns_sdlz_putnamedrr(dns_sdlzallnodes_t *allnodes, const char *name,
isc_result_t
dns_sdlz_putsoa(dns_sdlzlookup_t *lookup, const char *mname, const char *rname,
isc_uint32_t serial)
uint32_t serial)
{
char str[2 * DNS_NAME_MAXTEXT + 5 * (sizeof("2147483647")) + 7];
int n;