2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 22:45:39 +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

@@ -15,6 +15,7 @@
#include <config.h>
#include <ctype.h>
#include <inttypes.h>
#include <stdlib.h>
#include <isc/buffer.h>
@@ -1929,13 +1930,13 @@ dns_name_towire(const dns_name_t *name, dns_compress_t *cctx,
isc_result_t
dns_name_towire2(const dns_name_t *name, dns_compress_t *cctx,
isc_buffer_t *target, isc_uint16_t *comp_offsetp)
isc_buffer_t *target, uint16_t *comp_offsetp)
{
unsigned int methods;
isc_uint16_t offset;
uint16_t offset;
dns_name_t gp; /* Global compression prefix */
isc_boolean_t gf; /* Global compression target found */
isc_uint16_t go; /* Global compression offset */
uint16_t go; /* Global compression offset */
dns_offsets_t clo;
dns_name_t clname;