From: Mark Andrews Date: Mon, 20 Feb 2017 06:38:56 +0000 (+1100) Subject: dns_master_styleflags returns dns_masterstyle_flags_t X-Git-Tag: v9.12.0a1~439 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87ff6241e42383ff7e81c5001a71a2e63529d9fd;p=thirdparty%2Fbind9.git dns_master_styleflags returns dns_masterstyle_flags_t --- diff --git a/lib/dns/message.c b/lib/dns/message.c index ba805f5660f..f34b994b62e 100644 --- a/lib/dns/message.c +++ b/lib/dns/message.c @@ -3285,9 +3285,10 @@ dns_message_checksig(dns_message_t *msg, dns_view_t *view) { #define INDENT(sp) \ do { \ - unsigned int __i, __flags = dns_master_styleflags(sp); \ - if ((__flags & DNS_STYLEFLAG_INDENT) == 0 && \ - (__flags & DNS_STYLEFLAG_YAML) == 0) \ + unsigned int __i; \ + dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \ + if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL && \ + (__flags & DNS_STYLEFLAG_YAML) == 0ULL) \ break; \ for (__i = 0; __i < dns_master_indent; __i++) { \ ADD_STRING(target, dns_master_indentstr); \