diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-10 05:52:13 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-22 04:39:08 +0200 |
commit | 602c74cf78921b36f2bd6cd93dbd0f47d9da8d6b (patch) | |
tree | 004055d81f6d7b477043358ebd2bed30bcbeabde /src/core/dbus-execute.c | |
parent | efi: add comment clarifying we should not use EV_IPL anymore (diff) | |
download | systemd-602c74cf78921b36f2bd6cd93dbd0f47d9da8d6b.tar.xz systemd-602c74cf78921b36f2bd6cd93dbd0f47d9da8d6b.zip |
core: split out functions and definitions from execute.[ch] to credential.[ch]
The functions and definitions related to credential consume about 1000
lines in execute.c. Let's split out them to dedicated files.
Diffstat (limited to 'src/core/dbus-execute.c')
-rw-r--r-- | src/core/dbus-execute.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c index 395051e57f..2a32063ddd 100644 --- a/src/core/dbus-execute.c +++ b/src/core/dbus-execute.c @@ -9,6 +9,7 @@ #include "cap-list.h" #include "capability-util.h" #include "cpu-set-util.h" +#include "credential.h" #include "creds-util.h" #include "dbus-execute.h" #include "dbus-util.h" |