diff mbox series

[nft] monitor: do not print generation ID with --echo

Message ID 20201020195007.22631-1-pablo@netfilter.org
State Accepted
Delegated to: Pablo Neira
Headers show
Series [nft] monitor: do not print generation ID with --echo | expand

Commit Message

Pablo Neira Ayuso Oct. 20, 2020, 7:50 p.m. UTC
This fixes testcases/sets/0036add_set_element_expiration_0

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
 src/monitor.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/src/monitor.c b/src/monitor.c
index 3872ebcfbdaf..9e508f8f7574 100644
--- a/src/monitor.c
+++ b/src/monitor.c
@@ -849,7 +849,7 @@  static int netlink_events_newgen_cb(const struct nlmsghdr *nlh, int type,
 			break;
 		}
 	}
-	if (genid >= 0) {
+	if (!nft_output_echo(&monh->ctx->nft->output) && genid >= 0) {
 		nft_mon_print(monh, "# new generation %d", genid);
 		if (pid >= 0)
 			nft_mon_print(monh, " by process %d (%s)", pid, name);