2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

4860. [bug] isc_int8_t should be signed char. [RT #46973]

This commit is contained in:
Mark Andrews 2018-01-10 08:41:26 +11:00
parent 47f617f8b2
commit 21f708c88c
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
4860. [bug] isc_int8_t should be signed char. [RT #46973]
4859. [bug] A loop was possible when attempting to validate
unsigned CNAME responses from secure zones;
this caused a delay in returning SERVFAIL and

View File

@ -13,7 +13,7 @@
/*! \file */
typedef char isc_int8_t;
typedef signed char isc_int8_t;
typedef unsigned char isc_uint8_t;
typedef short isc_int16_t;
typedef unsigned short isc_uint16_t;