aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorsem <sem@FreeBSD.org>2011-11-17 21:02:07 +0800
committersem <sem@FreeBSD.org>2011-11-17 21:02:07 +0800
commite55b1fb298431ee4c48e876a53df1b7f43b81e14 (patch)
treefce1ac7d6ef056c3383f014af1cf10591aa04c0d /net
parentda9ca2f008ab5b2f296e8011027850ba71b18de2 (diff)
downloadfreebsd-ports-gnome-e55b1fb298431ee4c48e876a53df1b7f43b81e14.tar.gz
freebsd-ports-gnome-e55b1fb298431ee4c48e876a53df1b7f43b81e14.tar.zst
freebsd-ports-gnome-e55b1fb298431ee4c48e876a53df1b7f43b81e14.zip
- Fix regression in ospfd after upgrade to 0.99.20_2
PR: ports/162559 Submitted by: Ildar Hizbulin <hizel_at_vyborg.ru> Fixed by: maintainer Feature safe: Yes
Diffstat (limited to 'net')
-rw-r--r--net/quagga/Makefile2
-rw-r--r--net/quagga/files/patch-ospfd__ospf_packet.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile
index 46ef879c053b..1fe4d5421d60 100644
--- a/net/quagga/Makefile
+++ b/net/quagga/Makefile
@@ -7,7 +7,7 @@
PORTNAME= quagga
PORTVERSION= 0.99.20
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= net ipv6
MASTER_SITES= http://quagga.net/download/ \
http://www.ru.quagga.net/download/ \
diff --git a/net/quagga/files/patch-ospfd__ospf_packet.c b/net/quagga/files/patch-ospfd__ospf_packet.c
index a0263c8bb63c..fb312c5bf68e 100644
--- a/net/quagga/files/patch-ospfd__ospf_packet.c
+++ b/net/quagga/files/patch-ospfd__ospf_packet.c
@@ -5,7 +5,7 @@
ip_len = iph->ip_len;
-#if !defined(GNU_LINUX) && (OpenBSD < 200311)
-+#if !defined(GNU_LINUX) && (OpenBSD < 200311) && (__FreeBSD_version >= 1000000)
++#if !defined(GNU_LINUX) && (OpenBSD < 200311) && (__FreeBSD_version < 1000000)
/*
* Kernel network code touches incoming IP header parameters,
* before protocol specific processing.