Skip to content

Commit

Permalink
Merge pull request #16009 from anlancs/zebra/fix-fpm-nl
Browse files Browse the repository at this point in the history
zebra: fix wrong fpm packet header
  • Loading branch information
ton31337 authored May 18, 2024
2 parents e41b4a7 + 2429dd1 commit 815b1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zebra/fpm_listener.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ static void parse_netlink_msg(char *buf, size_t buf_len, fpm_msg_hdr_t *fpm)
for (; NLMSG_OK(hdr, len); hdr = NLMSG_NEXT(hdr, len)) {

netlink_msg_ctx_init(ctx);
ctx->hdr = (struct nlmsghdr *)buf;
ctx->hdr = hdr;

switch (hdr->nlmsg_type) {

Expand Down

0 comments on commit 815b1d0

Please sign in to comment.