chiark / gitweb /
core: Fix EACCES check for OOM adjustments
authorMartin Pitt <martin.pitt@ubuntu.com>
Tue, 13 Jan 2015 06:06:31 +0000 (07:06 +0100)
committerMartin Pitt <martin.pitt@ubuntu.com>
Tue, 13 Jan 2015 06:06:31 +0000 (07:06 +0100)
Commit 3bd5c3 added a check for EACCES, but missed the minus sign.

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();