mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
core/cgroup: fix IPAddressAllow=/IPAddressDeny= set through DBus
Fixes a regression caused by 84ebe6f013 (v250).
Fixes #34773.
This commit is contained in:
@@ -1977,11 +1977,12 @@ int bus_cgroup_set_property(
|
||||
prefixes = streq(name, "IPAddressAllow") ? &c->ip_address_allow : &c->ip_address_deny;
|
||||
reduced = streq(name, "IPAddressAllow") ? &c->ip_address_allow_reduced : &c->ip_address_deny_reduced;
|
||||
|
||||
fputs(name, f);
|
||||
fputs("=\n", f);
|
||||
|
||||
if (n == 0) {
|
||||
*reduced = true;
|
||||
*prefixes = set_free(*prefixes);
|
||||
fputs(name, f);
|
||||
fputs("=\n", f);
|
||||
} else {
|
||||
*reduced = false;
|
||||
|
||||
@@ -1990,7 +1991,7 @@ int bus_cgroup_set_property(
|
||||
return r;
|
||||
|
||||
const struct in_addr_prefix *p;
|
||||
SET_FOREACH(p, new_prefixes)
|
||||
SET_FOREACH(p, *prefixes)
|
||||
fprintf(f, "%s=%s\n", name,
|
||||
IN_ADDR_PREFIX_TO_STRING(p->family, &p->address, p->prefixlen));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user