diff options
author | Anton Protopopov <a.s.protopopov@gmail.com> | 2016-02-17 05:43:16 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-19 23:33:46 +0300 |
commit | a97eb33ff225f34a8124774b3373fd244f0e83ce (patch) | |
tree | 0ddad3647e038b6fc41840e9a471d95defc54231 /net/ipv4 | |
parent | cfdd28beb3205dbd1e91571516807199c8ab84ca (diff) | |
download | linux-a97eb33ff225f34a8124774b3373fd244f0e83ce.tar.xz |
rtnl: RTM_GETNETCONF: fix wrong return value
An error response from a RTM_GETNETCONF request can return the positive
error value EINVAL in the struct nlmsgerr that can mislead userspace.
Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com>
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/devinet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c index cebd9d31e65a..f6303b17546b 100644 --- a/net/ipv4/devinet.c +++ b/net/ipv4/devinet.c @@ -1847,7 +1847,7 @@ static int inet_netconf_get_devconf(struct sk_buff *in_skb, if (err < 0) goto errout; - err = EINVAL; + err = -EINVAL; if (!tb[NETCONFA_IFINDEX]) goto errout; |