From: Jose M. Guisado Gomez Date: Sun, 6 Dec 2020 10:12:34 +0000 (+0100) Subject: monitor: fix formatting of if statements X-Git-Tag: v0.9.8~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d357e27aa45870f2955d7a57c7c860d3ec7145c4;p=thirdparty%2Fnftables.git monitor: fix formatting of if statements Replace some "if(" introduced in cb7e02f4 by "if (" Signed-off-by: Jose M. Guisado Gomez Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/monitor.c b/src/monitor.c index 2b5325ea..af2998d4 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -225,7 +225,7 @@ static int netlink_events_table_cb(const struct nlmsghdr *nlh, int type, break; case NFTNL_OUTPUT_JSON: monitor_print_table_json(monh, cmd, t); - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; } @@ -264,7 +264,7 @@ static int netlink_events_chain_cb(const struct nlmsghdr *nlh, int type, break; case NFTNL_OUTPUT_JSON: monitor_print_chain_json(monh, cmd, c); - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; } @@ -312,7 +312,7 @@ static int netlink_events_set_cb(const struct nlmsghdr *nlh, int type, break; case NFTNL_OUTPUT_JSON: monitor_print_set_json(monh, cmd, set); - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; } @@ -457,7 +457,7 @@ static int netlink_events_setelem_cb(const struct nlmsghdr *nlh, int type, /* prevent set_free() from trying to free those */ dummyset->handle.set.name = NULL; dummyset->handle.table.name = NULL; - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; } @@ -504,7 +504,7 @@ static int netlink_events_obj_cb(const struct nlmsghdr *nlh, int type, break; case NFTNL_OUTPUT_JSON: monitor_print_obj_json(monh, cmd, obj); - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; } @@ -556,7 +556,7 @@ static int netlink_events_rule_cb(const struct nlmsghdr *nlh, int type, break; case NFTNL_OUTPUT_JSON: monitor_print_rule_json(monh, cmd, r); - if(!nft_output_echo(&monh->ctx->nft->output)) + if (!nft_output_echo(&monh->ctx->nft->output)) nft_mon_print(monh, "\n"); break; }