diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-05-18 17:10:07 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-18 17:10:07 +0200 |
commit | 958b66ea16deddd794b3a52643bd44633e165ead (patch) | |
tree | 22e30bbfe7e3e81b12fe37cc5754342ec513e92c /src/nspawn/nspawn.c | |
parent | 3b920d78b4a58dd054917821734cf0aefc6232d0 (diff) |
util: split all hostname related calls into hostname-util.c
Diffstat (limited to 'src/nspawn/nspawn.c')
-rw-r--r-- | src/nspawn/nspawn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 8aa7b451bb..4095c77fdf 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -52,11 +52,11 @@ #include <blkid/blkid.h> #endif -#include "random-util.h" #include "sd-daemon.h" #include "sd-bus.h" #include "sd-id128.h" #include "sd-rtnl.h" +#include "random-util.h" #include "log.h" #include "util.h" #include "mkdir.h" @@ -95,6 +95,7 @@ #include "formats-util.h" #include "process-util.h" #include "terminal-util.h" +#include "hostname-util.h" #ifdef HAVE_SECCOMP #include "seccomp-util.h" |