diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-03-25 11:35:32 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-03-25 11:36:21 +0100 |
| commit | 34389f88869421c4f7ce30e4fdb66a5a987df82c (patch) | |
| tree | 0c7c6d6d84b2a965e8da9d233a68921e97c98564 /pimd/pim_vty.c | |
| parent | 86c1ef566729ca6a49fa9cfb5e81ecfacfb00b32 (diff) | |
pim6d: fix format string mistakes in ssmpingd
PR #10653 forgot to update a bunch of format specifiers. Fix.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index a7d5986655..a0dea63b79 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -264,7 +264,7 @@ int pim_global_config_write_worker(struct pim_instance *pim, struct vty *vty) struct ssmpingd_sock *ss; ++writes; for (ALL_LIST_ELEMENTS_RO(pim->ssmpingd_list, node, ss)) { - vty_out(vty, "%sip ssmpingd %pI4\n", spaces, + vty_out(vty, "%sip ssmpingd %pPA\n", spaces, &ss->source_addr); ++writes; } |
