X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet_packet.c;h=31c19b7a42a743b1022ad7fd9af6bb5a690ba16f;hp=c8cd0ca7e3e34d6a9a36937af1fc29ab056ae5e9;hb=b23bf132838156d2fe5a18d50a2b5e068ae18ec3;hpb=127f2f99f3d43e0565782750f26f1d3980c72711 diff --git a/src/net_packet.c b/src/net_packet.c index c8cd0ca7..31c19b7a 100644 --- a/src/net_packet.c +++ b/src/net_packet.c @@ -936,7 +936,7 @@ void broadcast_packet(const node_t *from, vpn_packet_t *packet) { // usually distributes the sending of broadcast packets over all nodes. case BMODE_MST: for list_each(connection_t, c, connection_list) - if(c->status.active && c->status.mst && c != from->nexthop->connection) + if(c->edge && c->status.mst && c != from->nexthop->connection) send_packet(c->node, packet); break;