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_register.c | |
parent | pimd: replace pim_inet4_dump with `%pPAs` (diff) | |
download | frr-6d7bf748b6185f74532ed1273814036f556ab7ad.tar.xz frr-6d7bf748b6185f74532ed1273814036f556ab7ad.zip |
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_register.c')
-rw-r--r-- | pimd/pim_register.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_register.c b/pimd/pim_register.c index 7d90701a1..855d91256 100644 --- a/pimd/pim_register.c +++ b/pimd/pim_register.c @@ -383,7 +383,7 @@ int pim_register_recv(struct interface *ifp, struct in_addr dest_addr, if (pim_is_grp_ssm(pim_ifp->pim, sg.grp)) { if (pim_addr_is_any(sg.src)) { zlog_warn( - "%s: Received Register message for Group(%pI4) is now in SSM, dropping the packet", + "%s: Received Register message for Group(%pPA) is now in SSM, dropping the packet", __func__, &sg.grp); /* Drop Packet Silently */ return 0; |