mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
netfilter: xt_osf: fix xt_osf_remove_callback() return value
Return a negative error value. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2b1c8b0f92
commit
d667b9cfd0
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ static int xt_osf_remove_callback(struct sock *ctnl, struct sk_buff *skb,
|
||||||
{
|
{
|
||||||
struct xt_osf_user_finger *f;
|
struct xt_osf_user_finger *f;
|
||||||
struct xt_osf_finger *sf;
|
struct xt_osf_finger *sf;
|
||||||
int err = ENOENT;
|
int err = -ENOENT;
|
||||||
|
|
||||||
if (!osf_attrs[OSF_ATTR_FINGER])
|
if (!osf_attrs[OSF_ATTR_FINGER])
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
Loading…
Reference in a new issue