chiark / gitweb /
shared: add root argument to search_and_fopen
[elogind.git] / src / sysctl / sysctl.c
index 76efacb14a0227029b3a7d2a88dd36dd4ea9509a..8868732ad1352230fbb2e5ff1b4c9d2cd4ef8202 100644 (file)
@@ -123,7 +123,7 @@ static int parse_file(Hashmap *sysctl_options, const char *path, bool ignore_eno
 
         assert(path);
 
-        r = search_and_fopen_nulstr(path, "re", conf_file_dirs, &f);
+        r = search_and_fopen_nulstr(path, "re", NULL, conf_file_dirs, &f);
         if (r < 0) {
                 if (ignore_enoent && r == -ENOENT)
                         return 0;