mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 09:32:08 -04:00
ndata and offsets for dns_rootname and dns_wildcardname need to be
unsigned char * (not char *) to match the ndata and offsets in dns_name_t.
This commit is contained in:
parent
705cb05a18
commit
97741ef83e
1 changed files with 2 additions and 2 deletions
|
|
@ -167,8 +167,8 @@ do { \
|
|||
*/
|
||||
struct dns_constname {
|
||||
dns_name_t name;
|
||||
char const_ndata[2];
|
||||
char const_offsets[1];
|
||||
unsigned char const_ndata[2];
|
||||
unsigned char const_offsets[1];
|
||||
};
|
||||
|
||||
static struct dns_constname root = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue