busybox: update to busybox-1.25.1

This commit is contained in:
MilhouseVH 2016-11-18 22:26:21 +00:00
parent 9e86ba8cba
commit 5ab13b678c
2 changed files with 1 additions and 29 deletions

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="busybox"
PKG_VERSION="1.25.0"
PKG_VERSION="1.25.1"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -1,28 +0,0 @@
From d4bdbe4f63e57a1a0954dd35c71bbef56dda8f50 Mon Sep 17 00:00:00 2001
From: MilhouseVH <milhouseVH.github@nmacleod.com>
Date: Sat, 6 Aug 2016 19:41:06 +0100
Subject: [PATCH] iproute: scope is left undefined if not passed on command
line - default to UNIVERSE
See https://bugs.busybox.net/show_bug.cgi?id=9141
---
networking/libiproute/iproute.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c
index e674e9a..2b430a4 100644
--- a/networking/libiproute/iproute.c
+++ b/networking/libiproute/iproute.c
@@ -364,8 +364,7 @@ IF_FEATURE_IP_RULE(ARG_table,)
if (cmd != RTM_DELROUTE) {
if (RTPROT_BOOT != 0)
req.r.rtm_protocol = RTPROT_BOOT;
- if (RT_SCOPE_UNIVERSE != 0)
- req.r.rtm_scope = RT_SCOPE_UNIVERSE;
+ req.r.rtm_scope = RT_SCOPE_UNIVERSE;
if (RTN_UNICAST != 0)
req.r.rtm_type = RTN_UNICAST;
}
--
2.7.4