summaryrefslogtreecommitdiff
path: root/src/timesync/timesyncd-conf.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-11-09 00:26:11 +0100
committerLennart Poettering <lennart@poettering.net>2017-11-13 10:24:03 +0100
commitbcde742e78ac3b8e8ea348cfb022c820c11800e2 (patch)
tree0d044ff32ade82bf671aae8a1ff120ddc69598d0 /src/timesync/timesyncd-conf.c
parent92b5e6054254b1d6cf7fcb342720fe58a58d0d7e (diff)
downloadsystemd-bcde742e78ac3b8e8ea348cfb022c820c11800e2.tar.gz
conf-parser: turn three bool function params into a flags fields
This makes things more readable and fixes some issues with incorrect flag propagation between the various flavours of config_parse().
Diffstat (limited to 'src/timesync/timesyncd-conf.c')
-rw-r--r--src/timesync/timesyncd-conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timesync/timesyncd-conf.c b/src/timesync/timesyncd-conf.c
index b62e20c287..333f81a948 100644
--- a/src/timesync/timesyncd-conf.c
+++ b/src/timesync/timesyncd-conf.c
@@ -114,7 +114,7 @@ int manager_parse_config_file(Manager *m) {
CONF_PATHS_NULSTR("systemd/timesyncd.conf.d"),
"Time\0",
config_item_perf_lookup, timesyncd_gperf_lookup,
- false, m);
+ CONFIG_PARSE_WARN, m);
if (r < 0)
return r;