diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-01 09:09:47 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-21 20:26:04 -0500 |
| commit | 13376be4f28cbc99394452f50ce214f7127f2965 (patch) | |
| tree | b0d46b984274e2abb4e3019f376ef26ec4eddbbc /pimd/pim_macro.c | |
| parent | ae4cf53f4986c596e7b943b9b3304e30281828e7 (diff) | |
pimd: More macro fallout fix.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_macro.c')
| -rw-r--r-- | pimd/pim_macro.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pimd/pim_macro.c b/pimd/pim_macro.c index 8dbf851aa9..62decfd5f9 100644 --- a/pimd/pim_macro.c +++ b/pimd/pim_macro.c @@ -39,8 +39,7 @@ */ static int downstream_jpstate_isjoined(const struct pim_ifchannel *ch) { - return (ch->ifjoin_state == PIM_IFJOIN_JOIN || - ch->ifjoin_state == PIM_IFJOIN_PRUNE_PENDING); + return (ch->ifjoin_state != PIM_IFJOIN_NOINFO); } /* |
