mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +00:00
4860. [bug] isc_int8_t should be signed char. [RT #46973]
This commit is contained in:
parent
47f617f8b2
commit
21f708c88c
2
CHANGES
2
CHANGES
@ -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
|
4859. [bug] A loop was possible when attempting to validate
|
||||||
unsigned CNAME responses from secure zones;
|
unsigned CNAME responses from secure zones;
|
||||||
this caused a delay in returning SERVFAIL and
|
this caused a delay in returning SERVFAIL and
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
||||||
typedef char isc_int8_t;
|
typedef signed char isc_int8_t;
|
||||||
typedef unsigned char isc_uint8_t;
|
typedef unsigned char isc_uint8_t;
|
||||||
typedef short isc_int16_t;
|
typedef short isc_int16_t;
|
||||||
typedef unsigned short isc_uint16_t;
|
typedef unsigned short isc_uint16_t;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user