]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/core/load-dropin.c
conf-parser: turn three bool function params into a flags fields
[thirdparty/systemd.git] / src / core / load-dropin.c
index 948d1bc248ceddd38515786f2eb131c14ec00d23..c98ab4164f588a60c7ee2d4083f4d04e59195520 100644 (file)
@@ -154,12 +154,11 @@ int unit_load_dropin(Unit *u) {
                         return log_oom();
         }
 
-        STRV_FOREACH(f, u->dropin_paths) {
-                config_parse(u->id, *f, NULL,
-                             UNIT_VTABLE(u)->sections,
-                             config_item_perf_lookup, load_fragment_gperf_lookup,
-                             false, false, false, u);
-        }
+        STRV_FOREACH(f, u->dropin_paths)
+                (void) config_parse(u->id, *f, NULL,
+                                    UNIT_VTABLE(u)->sections,
+                                    config_item_perf_lookup, load_fragment_gperf_lookup,
+                                    0, u);
 
         u->dropin_mtime = now(CLOCK_REALTIME);