Skip to content

Commit

Permalink
[RTNETLINK]: Fix use of wrong skb in do_getlink()
Browse files Browse the repository at this point in the history
skb is the netlink query, nskb is the reply message.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Oct 12, 2006
1 parent 52c41a3 commit b974179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/core/rtnetlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
goto errout;
}

err = rtnl_unicast(skb, NETLINK_CB(skb).pid);
err = rtnl_unicast(nskb, NETLINK_CB(skb).pid);
errout:
kfree(iw_buf);
dev_put(dev);
Expand Down

0 comments on commit b974179

Please sign in to comment.