iproute/iproute2-backwardcompat.patch
Marcela Mašláňová 7062db1fa6 - rebuild without tetex files. It isn't working in rawhide yet. Added new
source for ps files.
- #431179 backward compatibility for previous iproute versions
2008-02-06 15:08:41 +00:00

13 lines
395 B
Diff

--- a/ip/iplink.c
+++ b/ip/iplink.c
@@ -107,7 +107,8 @@ static int accept_msg(const struct sockaddr_nl *who,
{
struct nlmsgerr *err = (struct nlmsgerr *)NLMSG_DATA(n);
- if (n->nlmsg_type == NLMSG_ERROR && err->error == -EOPNOTSUPP)
+ if (n->nlmsg_type == NLMSG_ERROR &&
+ (err->error == -EOPNOTSUPP || err->error == -EINVAL))
have_rtnl_newlink = 0;
else
have_rtnl_newlink = 1;