Skip to content

Commit

Permalink
fixup bsm #6
Browse files Browse the repository at this point in the history
  • Loading branch information
eqvinox committed Apr 26, 2022
1 parent 829a087 commit 122edcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pimd/pim_bsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ int pim_bsm_process(struct interface *ifp, pim_sgaddr *sg, uint8_t *buf,
if (PIM_DEBUG_BSM)
zlog_debug(
"%s : nofwd_bsm received on %pPAs when accpt_nofwd_bsm false",
__func__, &bshdr->bsr_addr.addr);
__func__, (pim_addr *)&bshdr->bsr_addr.addr);
pim->bsm_dropped++;
pim_ifp->pim_ifstat_ucast_bsm_cfg_miss++;
return -1;
Expand All @@ -1368,7 +1368,7 @@ int pim_bsm_process(struct interface *ifp, pim_sgaddr *sg, uint8_t *buf,
if (PIM_DEBUG_BSM)
zlog_debug(
"BSM check: RPF to BSR %pPAs is not %pPA%%%s",
&bshdr->bsr_addr.addr, &sg->src,
(pim_addr *)&bshdr->bsr_addr.addr, &sg->src,
ifp->name);
pim->bsm_dropped++;
return -1;
Expand Down

0 comments on commit 122edcf

Please sign in to comment.