From: Zbigniew Jędrzejewski-Szmek Date: Fri, 14 May 2021 15:32:50 +0000 (+0200) Subject: resolved: drop pointless bitfield on a lone bool X-Git-Tag: v249-rc1~203^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ebfdf45a20fcf614f8b094655ab8f67c51ca125a;p=thirdparty%2Fsystemd.git resolved: drop pointless bitfield on a lone bool --- diff --git a/src/resolve/resolved-dns-scope.h b/src/resolve/resolved-dns-scope.h index f63452330cc..a2b9546b380 100644 --- a/src/resolve/resolved-dns-scope.h +++ b/src/resolve/resolved-dns-scope.h @@ -43,7 +43,6 @@ struct DnsScope { OrderedHashmap *conflict_queue; sd_event_source *conflict_event_source; - bool announced:1; sd_event_source *announce_event_source; RateLimit ratelimit; @@ -63,6 +62,8 @@ struct DnsScope { LIST_HEAD(DnsTransaction, transactions); LIST_FIELDS(DnsScope, scopes); + + bool announced; }; int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol p, int family);