From: SumitAgarwal123 Date: Thu, 19 Sep 2019 10:04:48 +0000 (-0700) Subject: bfdd: Fixing coredump in log X-Git-Tag: base_7.3~267^2~6 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=13044b6f6fe34f7f3cbe83ec810bdf24bef35b96;p=matthieu%2Ffrr.git bfdd: Fixing coredump in log Param missing in debug log, leading to coredump Signed-off-by: Sayed Mohd Saquib --- diff --git a/bfdd/bfd.c b/bfdd/bfd.c index 245f2dc5ee..b884cd03da 100644 --- a/bfdd/bfd.c +++ b/bfdd/bfd.c @@ -1432,7 +1432,7 @@ struct bfd_session *bfd_key_lookup(struct bfd_key key) if (ctx.result) { bsp = ctx.result; log_debug(" peer %s found, but ifp" - " and/or loc-addr params ignored"); + " and/or loc-addr params ignored", peer_buf); } return bsp; }