summaryrefslogtreecommitdiff
path: root/src/timesync
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-11-03 12:26:12 +0100
committerLennart Poettering <lennart@poettering.net>2015-11-03 17:45:11 +0100
commita0f29c767a3bb3d621c658fa5b87063e1f44e24a (patch)
tree4d56b28633fc5349826ca4cb90049f3854b4cdd7 /src/timesync
parentb11d6a7bed4d867fb9f6ff4e7eb4ab20fcdc9301 (diff)
util-lib: move CONF_DIRS_NULSTR definition to def.h
After all, this is not some compiler or C magic, but something very specific to how systemd works, hence let's move it into def.h, and out of macro.h
Diffstat (limited to 'src/timesync')
-rw-r--r--src/timesync/timesyncd-conf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/timesync/timesyncd-conf.c b/src/timesync/timesyncd-conf.c
index be651fc636..001a0f4d41 100644
--- a/src/timesync/timesyncd-conf.c
+++ b/src/timesync/timesyncd-conf.c
@@ -20,11 +20,12 @@
***/
#include "alloc-util.h"
+#include "def.h"
+#include "extract-word.h"
#include "string-util.h"
+#include "timesyncd-conf.h"
#include "timesyncd-manager.h"
#include "timesyncd-server.h"
-#include "timesyncd-conf.h"
-#include "extract-word.h"
int manager_parse_server_string(Manager *m, ServerType type, const char *string) {
ServerName *first;