From d7bfa04a6987622e408d351c126faf78403b3231 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Wed, 31 Oct 2018 19:56:05 -0400 Subject: sys-apps/iproute2: remove older versions Signed-off-by: Anthony G. Basile Package-Manager: Portage-2.3.49, Repoman-2.3.11 --- .../files/iproute2-4.16.0-keep-family.patch | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch (limited to 'sys-apps/iproute2/files/iproute2-4.16.0-keep-family.patch') 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; --- -- cgit v1.2.3-65-gdbad