diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2005-10-30 18:03:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 20:37:31 -0500 |
commit | 621d31219d9a788bda924a0613048053f3f5f211 (patch) | |
tree | 9fb9846fdd999ba04c436aa84c7da0d8233ac545 /security/selinux/hooks.c | |
parent | b67a1b9e4bf878aa5d4b6b44cb5a251a2f425f0d (diff) |
[PATCH] cleanup the usage of SEND_SIG_xxx constants
This patch simplifies some checks for magic siginfo values. It should not
change the behaviour in any way.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r-- | security/selinux/hooks.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 295ac472faf1..45c41490d521 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
@@ -2713,8 +2713,7 @@ static int selinux_task_kill(struct task_struct *p, struct siginfo *info, int si | |||
2713 | if (rc) | 2713 | if (rc) |
2714 | return rc; | 2714 | return rc; |
2715 | 2715 | ||
2716 | if (info != SEND_SIG_NOINFO && (info == SEND_SIG_PRIV || | 2716 | if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info))) |
2717 | info == SEND_SIG_FORCED || SI_FROMKERNEL(info))) | ||
2718 | return 0; | 2717 | return 0; |
2719 | 2718 | ||
2720 | if (!sig) | 2719 | if (!sig) |