From 50d4273272061a0d0375e40f3870983dcabb0b2f Mon Sep 17 00:00:00 2001 From: Logan oos Even <46396513+Logan007@users.noreply.github.com> Date: Thu, 7 Oct 2021 13:56:03 +0545 Subject: [PATCH] disabled federation name output at supernode's management port (#845) --- src/sn_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sn_utils.c b/src/sn_utils.c index bc6da31..984423a 100644 --- a/src/sn_utils.c +++ b/src/sn_utils.c @@ -1560,7 +1560,7 @@ static int process_mgmt (n2n_sn_t *sss, "%s '%s'\n", (community->is_federation) ? "FEDERATION" : ((community->purgeable == COMMUNITY_UNPURGEABLE) ? "FIXED NAME COMMUNITY" : "COMMUNITY"), - community->community); + (community->is_federation) ? "-/-" : community->community); sendto_mgmt(sss, sender_sock, (const uint8_t *) resbuf, ressize); ressize = 0;