diff options
author | Steven Barth <cyrus@openwrt.org> | 2015-09-09 10:38:16 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2015-09-09 10:38:16 +0000 |
commit | 1fb987e3b8b5d18bb484800c620b02fc307a0d62 (patch) | |
tree | 3861b66ebe5ba0910fca25b86d96b2ad07709e20 /package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch | |
parent | e07959cade0eba1c85a76d76a1a673363c9f55fb (diff) | |
download | mtk-20170518-1fb987e3b8b5d18bb484800c620b02fc307a0d62.zip mtk-20170518-1fb987e3b8b5d18bb484800c620b02fc307a0d62.tar.gz mtk-20170518-1fb987e3b8b5d18bb484800c620b02fc307a0d62.tar.bz2 |
busybox: fix ip applet and netlink behavior
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 46833
Diffstat (limited to 'package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch')
-rw-r--r-- | package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch b/package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch new file mode 100644 index 0000000..360324b --- /dev/null +++ b/package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch @@ -0,0 +1,11 @@ +--- a/networking/libiproute/iplink.c ++++ b/networking/libiproute/iplink.c +@@ -470,7 +470,7 @@ static int do_add_or_delete(char **argv, + } + xrtnl_open(&rth); + ll_init_map(&rth); +- if (type_str) { ++ if (type_str && rtm == RTM_NEWLINK) { + struct rtattr *linkinfo = NLMSG_TAIL(&req.n); + + addattr_l(&req.n, sizeof(req), IFLA_LINKINFO, NULL, 0); |