summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-11-14 08:45:44 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-12-21 20:26:15 -0500
commit5cd11e3cd00579272fa6f30a448e8c8ac3fbe9a3 (patch)
tree29276baecb3141dde9f0e5940fcbc41b111cb471
parent8f21cf48a1fd3e8d4a8b3a5ab4af1b16a7d93b27 (diff)
pimd: Backing up broken state.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--pimd/pim_mroute.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pimd/pim_mroute.c b/pimd/pim_mroute.c
index c3f572c716..7309774548 100644
--- a/pimd/pim_mroute.c
+++ b/pimd/pim_mroute.c
@@ -321,7 +321,7 @@ pim_mroute_msg_wrvifwhole (int fd, struct interface *ifp, const char *buf)
struct pim_interface *pim_ifp;
struct pim_ifchannel *ch;
struct pim_upstream *up;
- struct prefix_sg star_g;
+ //struct prefix_sg star_g;
struct prefix_sg sg;
struct channel_oil *oil;
@@ -341,6 +341,7 @@ pim_mroute_msg_wrvifwhole (int fd, struct interface *ifp, const char *buf)
pim_str_sg_dump (&sg), ifp->name);
return -1;
}
+#if 0
star_g = sg;
star_g.src.s_addr = INADDR_ANY;
ch = pim_ifchannel_find(ifp, &star_g);
@@ -351,6 +352,7 @@ pim_mroute_msg_wrvifwhole (int fd, struct interface *ifp, const char *buf)
pim_str_sg_dump (&star_g), ifp->name);
return -1;
}
+#endif
if (PIM_DEBUG_MROUTE)
zlog_debug ("If channel: %p", ch);