summaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2015-09-09 10:38:16 +0000
committerSteven Barth <cyrus@openwrt.org>2015-09-09 10:38:16 +0000
commit1fb987e3b8b5d18bb484800c620b02fc307a0d62 (patch)
tree3861b66ebe5ba0910fca25b86d96b2ad07709e20 /package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch
parente07959cade0eba1c85a76d76a1a673363c9f55fb (diff)
downloadmaster-31e0f0ae-1fb987e3b8b5d18bb484800c620b02fc307a0d62.tar.gz
master-31e0f0ae-1fb987e3b8b5d18bb484800c620b02fc307a0d62.tar.bz2
master-31e0f0ae-1fb987e3b8b5d18bb484800c620b02fc307a0d62.zip
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.patch11
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 0000000000..360324bf7c
--- /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);