]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: drop pointless bitfield on a lone bool
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 14 May 2021 15:32:50 +0000 (17:32 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 14 May 2021 15:34:38 +0000 (17:34 +0200)
src/resolve/resolved-dns-scope.h

index f63452330ccd77841a51f3ea3aff91af28f08f08..a2b9546b3805a390257258e116060518be1d3779 100644 (file)
@@ -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);