chiark / gitweb /
core: Fix EACCES check for OOM adjustments
[elogind.git] / src / core / execute.c
index 12a96a76399561af1a32f0f10eac03dfeb69f914..19d3ec0da91e84ec474c0fd79a0752b5709f23a7 100644 (file)
@@ -1417,7 +1417,7 @@ static int exec_child(
 
                 sprintf(t, "%i", context->oom_score_adjust);
                 r = write_string_file("/proc/self/oom_score_adj", t);
-                if (r == -EPERM || r == EACCES) {
+                if (r == -EPERM || r == -EACCES) {
                         log_open();
                         log_unit_debug_errno(params->unit_id, r, "Failed to adjust OOM setting, assuming containerized execution, ignoring: %m");
                         log_close();