diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-03-13 12:14:47 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-03-13 12:16:43 +0100 |
commit | 760877e90cfdf1efd12e12ad29ce47d0ed1503dc (patch) | |
tree | 1cfb3ff933c36333079168b4aeb3275416ee1e3d /src/tmpfiles/tmpfiles.c | |
parent | util: split out memcmp()/memset() related calls into memory-util.[ch] (diff) | |
download | systemd-760877e90cfdf1efd12e12ad29ce47d0ed1503dc.tar.xz systemd-760877e90cfdf1efd12e12ad29ce47d0ed1503dc.zip |
util: split out sorting related calls to new sort-util.[ch]
Diffstat (limited to '')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 801e79b01d..ad73600241 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -53,6 +53,7 @@ #include "rm-rf.h" #include "selinux-util.h" #include "set.h" +#include "sort-util.h" #include "specifier.h" #include "stat-util.h" #include "stdio-util.h" @@ -61,7 +62,6 @@ #include "strv.h" #include "umask-util.h" #include "user-util.h" -#include "util.h" /* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates * them in the file system. This is intended to be used to create |