aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/patches/301-ip-link-fix-netlink-msg-size.patch
diff options
context:
space:
mode:
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 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);