netfilter: ipset: fix ip_set_flush return code
authorJozsef Kadlecsik <[email protected]>
Tue, 24 May 2011 08:20:19 +0000 (10:20 +0200)
committerPablo Neira Ayuso <[email protected]>
Thu, 26 May 2011 17:08:11 +0000 (19:08 +0200)
ip_set_flush returned -EPROTO instead of -IPSET_ERR_PROTOCOL, fixed

Signed-off-by: Jozsef Kadlecsik <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
net/netfilter/ipset/ip_set_core.c

index 72d1ac611fdc8e70124c6fca29686ffa416e9cd3..8041befc65553588eda40e4a41e6b9e440a21367 100644 (file)
@@ -815,7 +815,7 @@ ip_set_flush(struct sock *ctnl, struct sk_buff *skb,
        ip_set_id_t i;
 
        if (unlikely(protocol_failed(attr)))
-               return -EPROTO;
+               return -IPSET_ERR_PROTOCOL;
 
        if (!attr[IPSET_ATTR_SETNAME]) {
                for (i = 0; i < ip_set_max; i++)