dect
/
linux-2.6
Archived
13
0
Fork 0

fanotify: Return EPERM when a process is not privileged

The appropriate error code when privileged operations are denied is
EPERM, not EACCES.

Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Eric Paris <paris@paris.rdu.redhat.com>
This commit is contained in:
Andreas Gruenbacher 2010-08-24 12:58:54 +02:00 committed by Eric Paris
parent 0fb85621df
commit a2f13ad0ba
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
__func__, flags, event_f_flags);
if (!capable(CAP_SYS_ADMIN))
return -EACCES;
return -EPERM;
if (flags & ~FAN_ALL_INIT_FLAGS)
return -EINVAL;