diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2019-06-17 12:22:10 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2019-06-17 19:54:57 +0200 |
commit | cd76e3ce7f28c3b24f36992387b2e8351bed6746 (patch) | |
tree | d636f85b33a576c3a991c29e7ee514113ec53bbc /include | |
parent | ca12e455e98fb4247e0aa4c2d361195038debe65 (diff) |
src: remove useless parameter from cache_flush()
Command type is never used in cache_flush().
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/rule.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/rule.h b/include/rule.h index b41825d0..299485ff 100644 --- a/include/rule.h +++ b/include/rule.h @@ -639,8 +639,7 @@ extern int do_command(struct netlink_ctx *ctx, struct cmd *cmd); extern int cache_evaluate(struct nft_ctx *nft, struct list_head *cmds); extern int cache_update(struct nft_ctx *ctx, enum cmd_ops cmd, struct list_head *msgs); -extern void cache_flush(struct nft_ctx *ctx, enum cmd_ops cmd, - struct list_head *msgs); +extern void cache_flush(struct nft_ctx *ctx, struct list_head *msgs); extern void cache_release(struct nft_cache *cache); extern bool cache_is_complete(struct nft_cache *cache, enum cmd_ops cmd); |