diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-04 16:50:53 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-12 18:24:07 +0100 |
commit | d51f8b0f1e06bf72a80be2f65e3e505892d5fb50 (patch) | |
tree | 9204c64a3b12856677e8ab5b1dd219d29fd42b68 /pimd/pim_register.c | |
parent | pim6d: add skeleton for IPv6 PIM daemon (diff) | |
download | frr-d51f8b0f1e06bf72a80be2f65e3e505892d5fb50.tar.xz frr-d51f8b0f1e06bf72a80be2f65e3e505892d5fb50.zip |
pimd: move `%pSG4` to `%pPSG4`
Since this is only used in very few places, moving it out of the way is
reasonable. (`%pSG` will be pim_sgaddr)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_register.c')
-rw-r--r-- | pimd/pim_register.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pimd/pim_register.c b/pimd/pim_register.c index cc0dace7c..57449f816 100644 --- a/pimd/pim_register.c +++ b/pimd/pim_register.c @@ -415,8 +415,9 @@ int pim_register_recv(struct interface *ifp, struct in_addr dest_addr, pim_inet4_dump("<src?>", src_addr, src_str, sizeof(src_str)); - zlog_debug("%s: Sending register-stop to %s for %pSG4 due to prefix-list denial, dropping packet", - __func__, src_str, &sg); + zlog_debug( + "%s: Sending register-stop to %s for %pPSG4 due to prefix-list denial, dropping packet", + __func__, src_str, &sg); } return 0; |