From da0df9367d1e0721169f1f19eb48f15ee11ddfcf Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 20 Jun 2017 12:37:58 +1000 Subject: [PATCH] fix attribute name in DNS_NAME_INITABSOLUTE [RT #45409] --- lib/dns/include/dns/name.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/include/dns/name.h b/lib/dns/include/dns/name.h index 23f5127994..ab7645876d 100644 --- a/lib/dns/include/dns/name.h +++ b/lib/dns/include/dns/name.h @@ -154,7 +154,7 @@ LIBDNS_EXTERNAL_DATA extern const dns_name_t *dns_wildcardname; #define DNS_NAME_INITABSOLUTE(A,B) { \ DNS_NAME_MAGIC, \ A, sizeof(A), sizeof(B), \ - DNS_NAMEATTR_READONLY | DNS_NAME_ABSOLUTE, \ + DNS_NAMEATTR_READONLY | DNS_NAMEATTR_ABSOLUTE, \ B, NULL, { (void *)-1, (void *)-1}, \ {NULL, NULL} \ }