Skip to content

Commit

Permalink
Merge pull request #11493 from patrasar/pim_reg_stop_fix
Browse files Browse the repository at this point in the history
pimd: Register stop message sent with mask 32
  • Loading branch information
donaldsharp authored Jun 29, 2022
2 parents fd87826 + 8e51ca2 commit 03c95c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pimd/pim_tlv.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ int pim_encode_addr_group(uint8_t *buf, afi_t afi, int bidir, int scope,
*buf++ = PIM_MSG_ADDRESS_FAMILY;
*buf++ = 0;
*buf++ = flags;
*buf++ = sizeof(group) / 8;
*buf++ = sizeof(group) * 8;
memcpy(buf, &group, sizeof(group));
buf += sizeof(group);

Expand Down

0 comments on commit 03c95c5

Please sign in to comment.