]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
monitor: fix formatting of if statements
authorJose M. Guisado Gomez <guigom@riseup.net>
Sun, 6 Dec 2020 10:12:34 +0000 (11:12 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 8 Dec 2020 11:47:12 +0000 (12:47 +0100)
Replace some "if(" introduced in cb7e02f4 by "if ("

Signed-off-by: Jose M. Guisado Gomez <guigom@riseup.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/monitor.c

index 2b5325ea34c372e0f962595b2ea73acc0837685f..af2998d4272b28348d357261656e00d5b84b2b84 100644 (file)
@@ -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;
        }