diff options
author | Everton Marques <everton.marques@gmail.com> | 2015-01-19 18:25:45 -0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2015-02-04 06:08:02 +0100 |
commit | 85385f7eeee14d529065db7b863478c3ba455dd4 (patch) | |
tree | 2bd0f78e9da970f6153fd266d2214fe91c33dac9 /pimd/pim_pim.c | |
parent | d632689579bbcbfb5f38c3faf05ad675e002c059 (diff) | |
download | quagga-85385f7eeee14d529065db7b863478c3ba455dd4.tar.bz2 quagga-85385f7eeee14d529065db7b863478c3ba455dd4.tar.xz |
pimd: Log ifindex found for an interface when zebra lib reports a new connected address.
Diffstat (limited to 'pimd/pim_pim.c')
-rw-r--r-- | pimd/pim_pim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_pim.c b/pimd/pim_pim.c index 04823c21..f6f4c953 100644 --- a/pimd/pim_pim.c +++ b/pimd/pim_pim.c @@ -725,8 +725,8 @@ int pim_sock_add(struct interface *ifp) pim_ifp->pim_generation_id = pim_rand() & (int64_t) 0xFFFFFFFF; - zlog_info("PIM INTERFACE UP: on interface %s", - ifp->name); + zlog_info("PIM INTERFACE UP: on interface %s ifindex=%d", + ifp->name, ifp->ifindex); /* * Start receiving PIM messages |