diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-13 14:37:42 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-17 14:11:08 +0100 |
| commit | 3ca68c9cf3fa08979d73fb34cadc83c18d1d2106 (patch) | |
| tree | 846c26f25e2987725ed6ebc985833f3abf08a4f3 /pimd/pim_macro.c | |
| parent | 6d7bf748b6185f74532ed1273814036f556ab7ad (diff) | |
pimd: remove PIM_INADDR_IS[NOT]_ANY macros
These really don't serve much of a purpose, especially with how
inconsistently they're used.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_macro.c')
| -rw-r--r-- | pimd/pim_macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_macro.c b/pimd/pim_macro.c index 81ef6962de..aa41033cea 100644 --- a/pimd/pim_macro.c +++ b/pimd/pim_macro.c @@ -128,7 +128,7 @@ int pim_macro_ch_lost_assert(const struct pim_ifchannel *ch) return 0; /* false */ } - if (PIM_INADDR_IS_ANY(ch->ifassert_winner)) + if (pim_addr_is_any(ch->ifassert_winner)) return 0; /* false */ /* AssertWinner(S,G,I) == me ? */ |
