From f9e0ab5b8e6143a915d3c154923a5ff075fb7958 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 12 Nov 2015 07:54:04 -0800 Subject: [PATCH] pimd: Fix SPT bit initial setting The initial setting of the SPT bit was incorrect. Signed-off-by: Donald Sharp --- pimd/pim_upstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index c035170875..ff69069951 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -380,7 +380,7 @@ static struct pim_upstream *pim_upstream_new(struct in_addr source_addr, up->join_state = 0; up->state_transition = pim_time_monotonic_sec(); up->channel_oil = NULL; - up->sptbit = PIM_UPSTREAM_SPTBIT_TRUE; + up->sptbit = PIM_UPSTREAM_SPTBIT_FALSE; up->rpf.source_nexthop.interface = 0; up->rpf.source_nexthop.mrib_nexthop_addr.s_addr = PIM_NET_INADDR_ANY; -- 2.39.5