diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-05 19:29:11 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-17 14:11:02 +0100 |
| commit | 6d7bf748b6185f74532ed1273814036f556ab7ad (patch) | |
| tree | bbd4608c89aa9ee5606dc2351a996f9ee40afcaa /pimd/pim_join.c | |
| parent | 8e8be741b59cb339c946efbc0790466db7dae2e1 (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.c | 2 |
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; } |
