summaryrefslogtreecommitdiff
path: root/pimd/pim_join.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2022-01-05 19:29:11 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2022-01-17 14:11:02 +0100
commit6d7bf748b6185f74532ed1273814036f556ab7ad (patch)
treebbd4608c89aa9ee5606dc2351a996f9ee40afcaa /pimd/pim_join.c
parent8e8be741b59cb339c946efbc0790466db7dae2e1 (diff)
pimd: fix `%pI4` that needs to be `%pPA`
There's only 2 locations of this. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_join.c')
-rw-r--r--pimd/pim_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_join.c b/pimd/pim_join.c
index f4b2cc1e7d..f9aa791116 100644
--- a/pimd/pim_join.c
+++ b/pimd/pim_join.c
@@ -106,7 +106,7 @@ static void recv_join(struct interface *ifp, struct pim_neighbor *neigh,
if (pim_is_grp_ssm(pim_ifp->pim, sg->grp)) {
zlog_warn(
- "%s: Specified Group(%pI4) in join is now in SSM, not allowed to create PIM state",
+ "%s: Specified Group(%pPA) in join is now in SSM, not allowed to create PIM state",
__func__, &sg->grp);
return;
}