diff options
author | Zhao Hongjiang <zhaohongjiang@huawei.com> | 2012-09-20 22:37:25 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-21 13:58:08 -0400 |
commit | bf5b30b8a4416de04f1ac1196281ddb318669464 (patch) | |
tree | a96a8280047830630b54aa82c568f7a22e8f0ba1 /net/bluetooth/hidp | |
parent | e0c7a4a1a6c4ace4a176b95cb5089f55452c625e (diff) | |
download | talos-obmc-linux-bf5b30b8a4416de04f1ac1196281ddb318669464.tar.gz talos-obmc-linux-bf5b30b8a4416de04f1ac1196281ddb318669464.zip |
net: change return values from -EACCES to -EPERM
Change return value from -EACCES to -EPERM when the permission check fails.
Signed-off-by: Zhao Hongjiang <zhaohongjiang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/hidp')
-rw-r--r-- | net/bluetooth/hidp/sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hidp/sock.c b/net/bluetooth/hidp/sock.c index 18b3f6892a36..b24fb3bd8625 100644 --- a/net/bluetooth/hidp/sock.c +++ b/net/bluetooth/hidp/sock.c @@ -56,7 +56,7 @@ static int hidp_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long switch (cmd) { case HIDPCONNADD: if (!capable(CAP_NET_ADMIN)) - return -EACCES; + return -EPERM; if (copy_from_user(&ca, argp, sizeof(ca))) return -EFAULT; @@ -91,7 +91,7 @@ static int hidp_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long case HIDPCONNDEL: if (!capable(CAP_NET_ADMIN)) - return -EACCES; + return -EPERM; if (copy_from_user(&cd, argp, sizeof(cd))) return -EFAULT; |