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/run | |
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/run')
-rw-r--r-- | src/run/run.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/run/run.c b/src/run/run.c index 1993a424ca..4a0143d4e6 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -25,6 +25,7 @@ #include "alloc-util.h" #include "bus-error.h" +#include "bus-unit-util.h" #include "bus-util.h" #include "calendarspec.h" #include "env-util.h" |