diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2016-10-15 19:06:11 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2016-10-15 20:45:10 +0300 |
commit | 859d30d5211be15666ebf2f0dc780f89409fa28f (patch) | |
tree | e2223a8cfdd662dbb0b491709df647a1c9a097a2 /package/utils/busybox/patches/000-busybox-1.25.0-ip.patch | |
parent | 83f7ec31f8f9641ef842212c45db61b72682debf (diff) | |
download | mtk-20170518-859d30d5211be15666ebf2f0dc780f89409fa28f.zip mtk-20170518-859d30d5211be15666ebf2f0dc780f89409fa28f.tar.gz mtk-20170518-859d30d5211be15666ebf2f0dc780f89409fa28f.tar.bz2 |
busybox: update to version 1.25.1
Dropped upstream patches:
000-busybox-1.25.0-gzip.patch
000-busybox-1.25.0-ip.patch
000-busybox-1.25.0-ntpd.patch
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'package/utils/busybox/patches/000-busybox-1.25.0-ip.patch')
-rw-r--r-- | package/utils/busybox/patches/000-busybox-1.25.0-ip.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/package/utils/busybox/patches/000-busybox-1.25.0-ip.patch b/package/utils/busybox/patches/000-busybox-1.25.0-ip.patch deleted file mode 100644 index 50cd775..0000000 --- a/package/utils/busybox/patches/000-busybox-1.25.0-ip.patch +++ /dev/null @@ -1,17 +0,0 @@ -ip: fix an improper optimization: req.r.rtm_scope may be nonzero here -Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> - ---- a/networking/libiproute/iproute.c -+++ b/networking/libiproute/iproute.c -@@ -362,10 +362,9 @@ IF_FEATURE_IP_RULE(ARG_table,) - req.r.rtm_scope = RT_SCOPE_NOWHERE; - - if (cmd != RTM_DELROUTE) { -+ req.r.rtm_scope = RT_SCOPE_UNIVERSE; - if (RTPROT_BOOT != 0) - req.r.rtm_protocol = RTPROT_BOOT; -- if (RT_SCOPE_UNIVERSE != 0) -- req.r.rtm_scope = RT_SCOPE_UNIVERSE; - if (RTN_UNICAST != 0) - req.r.rtm_type = RTN_UNICAST; - } |