aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-10-31 19:56:05 -0400
committerAnthony G. Basile <blueness@gentoo.org>2018-10-31 19:56:05 -0400
commitd7bfa04a6987622e408d351c126faf78403b3231 (patch)
treecb7b9f849e047b5c31f6aaa44840a2a7df5062e3 /sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch
parentsys-apps/iproute2: sync with upstream stable version (diff)
downloadmusl-d7bfa04a6987622e408d351c126faf78403b3231.tar.gz
musl-d7bfa04a6987622e408d351c126faf78403b3231.tar.bz2
musl-d7bfa04a6987622e408d351c126faf78403b3231.zip
sys-apps/iproute2: remove older versions
Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch')
-rw-r--r--sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch b/sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch
deleted file mode 100644
index d2940c9e..00000000
--- a/sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Bug: https://bugs.gentoo.org/652986
-
-https://marc.info/?l=linux-netdev&m=152363743818340&w=2
-
---- a/lib/utils.c
-+++ b/lib/utils.c
-@@ -568,7 +568,7 @@ static int __get_addr_1(inet_prefix *addr, const char *name, int family)
- if (strcmp(name, "default") == 0) {
- if ((family == AF_DECnet) || (family == AF_MPLS))
- return -1;
-- addr->family = (family != AF_UNSPEC) ? family : AF_INET;
-+ addr->family = family;
- addr->bytelen = af_byte_len(addr->family);
- addr->bitlen = -2;
- addr->flags |= PREFIXLEN_SPECIFIED;
-@@ -579,7 +579,7 @@ static int __get_addr_1(inet_prefix *addr, const char *name, int family)
- strcmp(name, "any") == 0) {
- if ((family == AF_DECnet) || (family == AF_MPLS))
- return -1;
-- addr->family = AF_UNSPEC;
-+ addr->family = family;
- addr->bytelen = 0;
- addr->bitlen = -2;
- return 0;
---