From dc687c9ee77c080b1358790ead4b140040dbac3a Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Tue, 21 Jun 2016 20:14:20 +0000 Subject: [PATCH] zebra: Add iface index to RA message count increment failure msg Signed-off-by: Quentin Young --- zebra/rtadv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zebra/rtadv.c b/zebra/rtadv.c index 22fbf0b9c6..750502aa23 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -135,7 +135,8 @@ rtadv_recv_packet (int sock, u_char *buf, int buflen, } if(rtadv_increment_received(ifindex) < 0) - zlog_err("%s: could not increment RA received counter", __func__); + zlog_err("%s: could not increment RA received counter on ifindex %d", + __func__, *ifindex); return ret; }