View | Details | Raw Unified | Return to bug 57812
Collapse All | Expand All

(-)pf/Makefile (+1 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	pf_freebsd
8
PORTNAME=	pf_freebsd
9
PORTVERSION=	1.66
9
PORTVERSION=	1.66
10
PORTREVISION=	1
10
CATEGORIES=	security ipv6
11
CATEGORIES=	security ipv6
11
MASTER_SITES=	http://pf4freebsd.love2party.net/
12
MASTER_SITES=	http://pf4freebsd.love2party.net/
12
.if defined(WITH_ALTQ) && (${WITH_ALTQ} == "yes")
13
.if defined(WITH_ALTQ) && (${WITH_ALTQ} == "yes")
(-)pf/files/patch-ac (+14 lines)
Line 0 Link Here
1
--- freebsd_tcpdump/print-tcp.c.orig	Thu Oct  9 19:55:02 2003
2
+++ freebsd_tcpdump/print-tcp.c	Thu Oct  9 19:56:28 2003
3
@@ -406,7 +406,11 @@
4
 	}
5
 
6
 	/* OS Fingerprint */
7
+#ifdef INET6
8
 	if (oflag && ip6 == NULL && (flags & (TH_SYN|TH_ACK)) == TH_SYN) {
9
+#else
10
+	if (oflag && (flags & (TH_SYN|TH_ACK)) == TH_SYN) {
11
+#endif
12
 		struct pf_osfp_enlist *head = NULL;
13
 		struct pf_osfp_entry *fp;
14
 		unsigned long left;

Return to bug 57812