summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/bpf-firewall.c1
-rw-r--r--src/core/dbus-job.c1
-rw-r--r--src/core/dbus-unit.c1
-rw-r--r--src/core/dynamic-user.c1
-rw-r--r--src/core/manager.c1
-rw-r--r--src/core/transaction.c3
-rw-r--r--src/core/unit.c1
-rw-r--r--src/core/unit.h3
8 files changed, 9 insertions, 3 deletions
diff --git a/src/core/bpf-firewall.c b/src/core/bpf-firewall.c
index 7a8b848fb3..a637437a5a 100644
--- a/src/core/bpf-firewall.c
+++ b/src/core/bpf-firewall.c
@@ -23,6 +23,7 @@
#include "memory-util.h"
#include "missing_syscall.h"
#include "unit.h"
+#include "strv.h"
#include "virt.h"
enum {
diff --git a/src/core/dbus-job.c b/src/core/dbus-job.c
index d11e58b51d..a7d342257b 100644
--- a/src/core/dbus-job.c
+++ b/src/core/dbus-job.c
@@ -10,6 +10,7 @@
#include "log.h"
#include "selinux-access.h"
#include "string-util.h"
+#include "strv.h"
static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_type, job_type, JobType);
static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_state, job_state, JobState);
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c
index 220b4c2372..ef434fb9f1 100644
--- a/src/core/dbus-unit.c
+++ b/src/core/dbus-unit.c
@@ -12,6 +12,7 @@
#include "dbus-util.h"
#include "dbus.h"
#include "fd-util.h"
+#include "install.h"
#include "locale-util.h"
#include "log.h"
#include "path-util.h"
diff --git a/src/core/dynamic-user.c b/src/core/dynamic-user.c
index fb0a794348..e7a2f64525 100644
--- a/src/core/dynamic-user.c
+++ b/src/core/dynamic-user.c
@@ -20,6 +20,7 @@
#include "socket-util.h"
#include "stdio-util.h"
#include "string-util.h"
+#include "strv.h"
#include "user-util.h"
/* Takes a value generated randomly or by hashing and turns it into a UID in the right range */
diff --git a/src/core/manager.c b/src/core/manager.c
index 3d3c3b0cba..c176309edf 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -46,6 +46,7 @@
#include "fs-util.h"
#include "hashmap.h"
#include "io-util.h"
+#include "install.h"
#include "label.h"
#include "locale-setup.h"
#include "log.h"
diff --git a/src/core/transaction.c b/src/core/transaction.c
index d1bf2e64c9..a0825c595c 100644
--- a/src/core/transaction.c
+++ b/src/core/transaction.c
@@ -6,9 +6,10 @@
#include "alloc-util.h"
#include "bus-common-errors.h"
#include "bus-error.h"
+#include "dbus-unit.h"
+#include "strv.h"
#include "terminal-util.h"
#include "transaction.h"
-#include "dbus-unit.h"
static void transaction_unlink_job(Transaction *tr, Job *j, bool delete_dependencies);
diff --git a/src/core/unit.c b/src/core/unit.c
index 2cd58c4704..fa89bd4a4d 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -28,6 +28,7 @@
#include "fs-util.h"
#include "id128-util.h"
#include "io-util.h"
+#include "install.h"
#include "load-dropin.h"
#include "load-fragment.h"
#include "log.h"
diff --git a/src/core/unit.h b/src/core/unit.h
index 094a451f3c..47ec9877a6 100644
--- a/src/core/unit.h
+++ b/src/core/unit.h
@@ -8,10 +8,9 @@
#include "bpf-program.h"
#include "condition.h"
#include "emergency-action.h"
-#include "install.h"
#include "list.h"
#include "set.h"
-#include "unit-name.h"
+#include "unit-file.h"
#include "cgroup.h"
typedef struct UnitRef UnitRef;