diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 18:59:36 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:55 +0100 |
commit | bb15fafe9cd815fe5bf9eae84c08aead2eb98fd7 (patch) | |
tree | 57955c8d8a47196e17d4a2d3963766ad59ef3735 /src/locale/localed.c | |
parent | 4349cd7c1d153c4ffa23cf1cff1644e0afa9bcf0 (diff) |
util: move filename_is_valid() and path_is_safe() to path-util.[ch]
Diffstat (limited to 'src/locale/localed.c')
-rw-r--r-- | src/locale/localed.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/locale/localed.c b/src/locale/localed.c index 73e25f0642..343399a62d 100644 --- a/src/locale/localed.c +++ b/src/locale/localed.c @@ -30,20 +30,21 @@ #include "sd-bus.h" -#include "util.h" -#include "mkdir.h" -#include "strv.h" -#include "def.h" -#include "env-util.h" -#include "fileio.h" -#include "fileio-label.h" -#include "bus-util.h" #include "bus-error.h" #include "bus-message.h" +#include "bus-util.h" +#include "def.h" +#include "env-util.h" #include "event-util.h" +#include "fd-util.h" +#include "fileio-label.h" +#include "fileio.h" #include "locale-util.h" +#include "mkdir.h" +#include "path-util.h" #include "selinux-util.h" -#include "fd-util.h" +#include "strv.h" +#include "util.h" enum { /* We don't list LC_ALL here on purpose. People should be |