chiark / gitweb /
ask-password: supported plymouth cached passwords
[elogind.git] / src / sysctl.c
index 6b0e9aa3ba0f2971e576135e70f3479f80efa104..a8a9422ac35a9192a23af62d22b2800c6ea9430e 100644 (file)
@@ -43,6 +43,7 @@ static void apply_sysctl(const char *property, const char *value) {
         if (!(p = new(char, sizeof(PROC_SYS_PREFIX) + strlen(property)))) {
                 log_error("Out of memory");
                 exit_code = -ENOMEM;
+                return;
         }
 
         n = stpcpy(p, PROC_SYS_PREFIX);
@@ -53,7 +54,9 @@ static void apply_sysctl(const char *property, const char *value) {
                         *n = '/';
 
         if ((r = write_one_line_file(p, value)) < 0) {
-                log_warning("Failed to write '%s' to '%s': %s", value, p, strerror(-r));
+
+                log_full(r == -ENOENT ? LOG_DEBUG : LOG_WARNING,
+                         "Failed to write '%s' to '%s': %s", value, p, strerror(-r));
 
                 if (r != -ENOENT)
                         exit_code = r;