From: Lennart Poettering Date: Wed, 6 Apr 2016 18:46:52 +0000 (+0200) Subject: core: minor coding style fix X-Git-Tag: v230~185^2~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8d410f4455238e30daa1775b469e31f34371f87;p=thirdparty%2Fsystemd.git core: minor coding style fix --- diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c index 973a60187d4..9dfca14914c 100644 --- a/src/core/dbus-execute.c +++ b/src/core/dbus-execute.c @@ -837,9 +837,9 @@ int bus_exec_context_set_transient_property( if (mode != UNIT_CHECK) { - if (isempty(uu)) { + if (isempty(uu)) c->user = mfree(c->user); - } else { + else { char *t; t = strdup(uu); @@ -864,9 +864,9 @@ int bus_exec_context_set_transient_property( if (mode != UNIT_CHECK) { - if (isempty(gg)) { + if (isempty(gg)) c->group = mfree(c->group); - } else { + else { char *t; t = strdup(gg);