|
@@ -112,10 +112,10 @@ hash_netnet4_data_list(struct sk_buff *skb,
|
|
|
(flags &&
|
|
|
nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
|
|
|
goto nla_put_failure;
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
|
|
|
nla_put_failure:
|
|
|
- return 1;
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
static inline void
|
|
@@ -334,10 +334,10 @@ hash_netnet6_data_list(struct sk_buff *skb,
|
|
|
(flags &&
|
|
|
nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
|
|
|
goto nla_put_failure;
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
|
|
|
nla_put_failure:
|
|
|
- return 1;
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
static inline void
|