From: Philip Withnall Date: Wed, 12 Jun 2019 07:52:48 +0000 (+0100) Subject: shared: Factor out bus_append_scope_property() for scopes X-Git-Tag: v244-rc1~146^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5a70a68fd6568639b1739d4be6130d15cf91a39f;p=thirdparty%2Fsystemd.git shared: Factor out bus_append_scope_property() for scopes This introduces no functional changes, but will make some upcoming changes a little clearer. Signed-off-by: Philip Withnall --- diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 322204dd221..dc7c2f41aa8 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -1401,6 +1401,14 @@ static int bus_append_path_property(sd_bus_message *m, const char *field, const return 0; } +static int bus_append_scope_property(sd_bus_message *m, const char *field, const char *eq) { + if (streq(field, "TimeoutStopSec")) + + return bus_append_parse_sec_rename(m, field, eq); + + return 0; +} + static int bus_append_service_property(sd_bus_message *m, const char *field, const char *eq) { int r; @@ -1789,15 +1797,15 @@ int bus_append_unit_property_assignment(sd_bus_message *m, UnitType t, const cha break; case UNIT_SCOPE: - - if (streq(field, "TimeoutStopSec")) - return bus_append_parse_sec_rename(m, field, eq); - r = bus_append_cgroup_property(m, field, eq); if (r != 0) return r; r = bus_append_kill_property(m, field, eq); + if (r != 0) + return r; + + r = bus_append_scope_property(m, field, eq); if (r != 0) return r; break;