Skip to content

Commit

Permalink
Merge pull request FRRouting#12518 from patrasar/pim_minor_issue
Browse files Browse the repository at this point in the history
pimd: Fix (S,G) debug issue
  • Loading branch information
ton31337 committed Dec 20, 2022
2 parents a1347aa + a5a221b commit 43203ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pimd/pim_oil.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ struct channel_oil *pim_channel_oil_del(struct channel_oil *c_oil,
const char *name)
{
if (PIM_DEBUG_MROUTE) {
pim_sgaddr sg = {.src = *oil_mcastgrp(c_oil),
.grp = *oil_origin(c_oil)};
pim_sgaddr sg = {.src = *oil_origin(c_oil),
.grp = *oil_mcastgrp(c_oil)};

zlog_debug(
"%s(%s): Del oil for %pSG, Ref Count: %d (Predecrement)",
Expand Down

0 comments on commit 43203ba

Please sign in to comment.