From cd76e3ce7f28c3b24f36992387b2e8351bed6746 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Mon, 17 Jun 2019 12:22:10 +0200 Subject: src: remove useless parameter from cache_flush() Command type is never used in cache_flush(). Signed-off-by: Pablo Neira Ayuso --- src/evaluate.c | 2 +- src/rule.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/evaluate.c b/src/evaluate.c index 70c7e597..73a4be33 100644 --- a/src/evaluate.c +++ b/src/evaluate.c @@ -3682,7 +3682,7 @@ static int cmd_evaluate_flush(struct eval_ctx *ctx, struct cmd *cmd) switch (cmd->obj) { case CMD_OBJ_RULESET: - cache_flush(ctx->nft, cmd->op, ctx->msgs); + cache_flush(ctx->nft, ctx->msgs); break; case CMD_OBJ_TABLE: /* Flushing a table does not empty the sets in the table nor remove diff --git a/src/rule.c b/src/rule.c index 0c0fd07e..4407b0b0 100644 --- a/src/rule.c +++ b/src/rule.c @@ -297,7 +297,7 @@ static void __cache_flush(struct list_head *table_list) } } -void cache_flush(struct nft_ctx *nft, enum cmd_ops cmd, struct list_head *msgs) +void cache_flush(struct nft_ctx *nft, struct list_head *msgs) { struct netlink_ctx ctx = { .list = LIST_HEAD_INIT(ctx.list), -- cgit v1.2.3