diff options
author | pi <pi@FreeBSD.org> | 2017-10-04 02:10:38 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2017-10-04 02:10:38 +0800 |
commit | 5fb798ee02848becea641b568ff2207739079bef (patch) | |
tree | 36d8f223fc08e90464857a1b4d9481fc27c0a7e0 /net | |
parent | 595db244eeae88d1dd609d284749c064c8646673 (diff) | |
download | freebsd-ports-gnome-5fb798ee02848becea641b568ff2207739079bef.tar.gz freebsd-ports-gnome-5fb798ee02848becea641b568ff2207739079bef.tar.zst freebsd-ports-gnome-5fb798ee02848becea641b568ff2207739079bef.zip |
net/quagga: update 1.2.1 -> 1.2.2
- bgpd: Fix AS_PATH size calculation for long paths
- zebra: Fix to set tag for a static route configured, #955
- Removed the installation of vrf specific tag and distance command
- nhrpd: several changes and bug fixes
- ripd: ripv2 fails to send packets on non multicast interface
- vtysh:address-family vpnv6 and vpnv6 unicast added, #950
Reported by: Balaji Gurudoss <balajig81@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/quagga/Makefile | 3 | ||||
-rw-r--r-- | net/quagga/distinfo | 6 | ||||
-rw-r--r-- | net/quagga/files/patch-bgpd__bgp_aspath.c | 11 |
3 files changed, 4 insertions, 16 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile index 7cd1cc71448d..283c560961f7 100644 --- a/net/quagga/Makefile +++ b/net/quagga/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= quagga -PORTVERSION= 1.2.1 -PORTREVISION= 4 +PORTVERSION= 1.2.2 CATEGORIES= net ipv6 MASTER_SITES= SAVANNAH diff --git a/net/quagga/distinfo b/net/quagga/distinfo index 3935b69ca59f..0b6813861ca8 100644 --- a/net/quagga/distinfo +++ b/net/quagga/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1489184471 -SHA256 (quagga-1.2.1.tar.gz) = aaddba5d4f41ed8e4c2f155f4584c993465d122c9096b5b52ada3fc75266fbcd -SIZE (quagga-1.2.1.tar.gz) = 2922514 +TIMESTAMP = 1507052274 +SHA256 (quagga-1.2.2.tar.gz) = 522e22f2beee64e3f0c2cde3d0155f3b8103f4f6fc8abef92cb40bc3a4cc2931 +SIZE (quagga-1.2.2.tar.gz) = 2986142 diff --git a/net/quagga/files/patch-bgpd__bgp_aspath.c b/net/quagga/files/patch-bgpd__bgp_aspath.c deleted file mode 100644 index 7b2b9ed7c8ab..000000000000 --- a/net/quagga/files/patch-bgpd__bgp_aspath.c +++ /dev/null @@ -1,11 +0,0 @@ ---- bgpd/bgp_aspath.c.orig 2017-03-10 12:55:06 UTC -+++ bgpd/bgp_aspath.c -@@ -903,7 +903,7 @@ aspath_put (struct stream *s, struct aspath *as, int u - assegment_header_put (s, seg->type, AS_SEGMENT_MAX); - assegment_data_put (s, seg->as, AS_SEGMENT_MAX, use32bit); - written += AS_SEGMENT_MAX; -- bytes += ASSEGMENT_SIZE (written, use32bit); -+ bytes += ASSEGMENT_SIZE (AS_SEGMENT_MAX, use32bit); - } - - /* write the final segment, probably is also the first */ |