Skip to content

Commit

Permalink
mfea: pim_register interfaces are always mcast capable.
Browse files Browse the repository at this point in the history
This fixes error message and possibly errors as well, but
mcast routing was working even in this state, so not sure how
serious this is.  Bug was introduced earlier in the 1.5-WIP
development.

Signed-off-by: Ben Greear <greearb@candelatech.com>
  • Loading branch information
greearb committed Oct 5, 2011
1 parent a1a2402 commit 52ea68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xorp/fea/mfea_vif.cc
Expand Up @@ -112,7 +112,7 @@ MfeaVif::start(string& error_msg)
return XORP_OK;
}

if (!is_multicast_capable()) {
if (!(is_pim_register() || is_multicast_capable())) {
wants_to_be_started = true;
XLOG_WARNING("WARNING: Delaying start of mfea-vif: %s because underlying vif is not multicast capable.",
name().c_str());
Expand Down

0 comments on commit 52ea68a

Please sign in to comment.