diff options
author | Kees Cook <keescook@chromium.org> | 2015-06-15 18:29:16 -0400 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2015-07-15 14:52:54 -0400 |
commit | 221272f97ca528048a577a3ff23d7774286ca5fd (patch) | |
tree | 78c221163aa09492b6cc2c90943734e5fcc1b9ba /kernel/seccomp.c | |
parent | 13c4a90119d28cfcb6b5bdd820c233b86c2b0237 (diff) |
seccomp: swap hard-coded zeros to defined name
For clarity, if CONFIG_SECCOMP isn't defined, seccomp_mode() is returning
"disabled". This makes that more clear, along with another 0-use, and
results in no operational change.
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'kernel/seccomp.c')
-rw-r--r-- | kernel/seccomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/seccomp.c b/kernel/seccomp.c index 645e42d6fa4d..383bd6caca81 100644 --- a/kernel/seccomp.c +++ b/kernel/seccomp.c | |||
@@ -594,7 +594,7 @@ void secure_computing_strict(int this_syscall) | |||
594 | unlikely(current->ptrace & PT_SUSPEND_SECCOMP)) | 594 | unlikely(current->ptrace & PT_SUSPEND_SECCOMP)) |
595 | return; | 595 | return; |
596 | 596 | ||
597 | if (mode == 0) | 597 | if (mode == SECCOMP_MODE_DISABLED) |
598 | return; | 598 | return; |
599 | else if (mode == SECCOMP_MODE_STRICT) | 599 | else if (mode == SECCOMP_MODE_STRICT) |
600 | __secure_computing_strict(this_syscall); | 600 | __secure_computing_strict(this_syscall); |