diff options
Diffstat (limited to 'kernel/capability.c')
| -rw-r--r-- | kernel/capability.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/capability.c b/kernel/capability.c index c7685ad00a9..edb845a6e84 100644 --- a/kernel/capability.c +++ b/kernel/capability.c @@ -133,7 +133,7 @@ static inline int cap_set_all(kernel_cap_t *effective,       int found = 0;       do_each_thread(g, target) { -             if (target == current || target->pid == 1) +             if (target == current || is_init(target))                       continue;               found = 1;  	     if (security_capset_check(target, effective, inheritable,  |