summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pimd/pim_pim.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pimd/pim_pim.c b/pimd/pim_pim.c
index 7113d5405e..d5ee30fb2e 100644
--- a/pimd/pim_pim.c
+++ b/pimd/pim_pim.c
@@ -332,8 +332,9 @@ static int pim_sock_read(struct thread *t)
if (!ifp || !ifp->info) {
if (PIM_DEBUG_PIM_PACKETS)
zlog_debug(
- "%s: Received incoming pim packet on interface not yet configured for pim",
- __PRETTY_FUNCTION__);
+ "%s: Received incoming pim packet on interface(%s:%d) not yet configured for pim",
+ __PRETTY_FUNCTION__,
+ ifp ? ifp->name : "Unknown", ifindex);
goto done;
}
int fail = pim_pim_packet(ifp, buf, len);