diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-12 15:44:50 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-16 17:03:28 +0100 |
commit | 35cd0ba516fb0e2ee5744b9185f7df903962c726 (patch) | |
tree | b2bd0411918b1c38b8b5997a6e5c17c2e5f3ddd8 /src/import/pull-raw.c | |
parent | mkdir: drop mkdir_errno_wrapper(), use mkdirat_errno_wrapper() instead (diff) | |
download | systemd-35cd0ba516fb0e2ee5744b9185f7df903962c726.tar.xz systemd-35cd0ba516fb0e2ee5744b9185f7df903962c726.zip |
shared: clean up mkdir.h/label.h situation
Previously the mkdir_label() family of calls was implemented in
src/shared/mkdir-label.c but its functions partly declared ins
src/shared/label.h and partly in src/basic/mkdir.h (!!). That's weird
(and wrong).
Let's clean this up, and add a proper mkdir-label.h matching the .c
file.
Diffstat (limited to 'src/import/pull-raw.c')
-rw-r--r-- | src/import/pull-raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/pull-raw.c b/src/import/pull-raw.c index 6a0c2c8b17..0623afcc84 100644 --- a/src/import/pull-raw.c +++ b/src/import/pull-raw.c @@ -17,7 +17,7 @@ #include "import-util.h" #include "install-file.h" #include "macro.h" -#include "mkdir.h" +#include "mkdir-label.h" #include "path-util.h" #include "pull-common.h" #include "pull-job.h" |