diff options
Diffstat (limited to 'fs/fcntl.c')
-rw-r--r-- | fs/fcntl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fcntl.c b/fs/fcntl.c index bf049a805e59..63964d863ad6 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c | |||
@@ -401,8 +401,8 @@ static inline int sigio_perm(struct task_struct *p, | |||
401 | struct fown_struct *fown, int sig) | 401 | struct fown_struct *fown, int sig) |
402 | { | 402 | { |
403 | return (((fown->euid == 0) || | 403 | return (((fown->euid == 0) || |
404 | (fown->euid == p->suid) || (fown->euid == p->uid) || | 404 | (fown->euid == p->cred->suid) || (fown->euid == p->cred->uid) || |
405 | (fown->uid == p->suid) || (fown->uid == p->uid)) && | 405 | (fown->uid == p->cred->suid) || (fown->uid == p->cred->uid)) && |
406 | !security_file_send_sigiotask(p, fown, sig)); | 406 | !security_file_send_sigiotask(p, fown, sig)); |
407 | } | 407 | } |
408 | 408 | ||