Browse Source

disabled federation name output at supernode's management port (#845)

pull/850/head
Logan oos Even 3 years ago
committed by GitHub
parent
commit
50d4273272
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/sn_utils.c

2
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;

Loading…
Cancel
Save