diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-04-20 17:43:13 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-04-22 16:06:20 +0200 |
commit | 20b1644140c02b436d5efb203f40c9b80a4579a3 (patch) | |
tree | ef3b26d36fa21fff9e14abe6b637c985d92495b4 /src/nspawn | |
parent | 0ff308c8dea9a589ddbc437c097edc3fb26360d7 (diff) |
shared: move unit-specific code from bus-util.h to bus-unit-util.h
Previously we'd have generally useful sd-bus utilities in bust-util.h,
intermixed with code that is specifically for writing clients for PID 1,
wrapping job and unit handling. Let's split the latter out and move it into
bus-unit-util.c, to make the sources a bit short and easier to grok.
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn-register.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nspawn/nspawn-register.c b/src/nspawn/nspawn-register.c index 760861089d..20103c5e88 100644 --- a/src/nspawn/nspawn-register.c +++ b/src/nspawn/nspawn-register.c @@ -20,6 +20,7 @@ #include "sd-bus.h" #include "bus-error.h" +#include "bus-unit-util.h" #include "bus-util.h" #include "nspawn-register.h" #include "stat-util.h" |