diff options
Diffstat (limited to 'security/pf/files/patch-aa')
-rw-r--r-- | security/pf/files/patch-aa | 41 |
1 files changed, 10 insertions, 31 deletions
diff --git a/security/pf/files/patch-aa b/security/pf/files/patch-aa index 24724598f4fb..f1a35d32cee9 100644 --- a/security/pf/files/patch-aa +++ b/security/pf/files/patch-aa @@ -1,32 +1,11 @@ ---- freebsd_tcpdump/print-pflog.c.orig Fri Jun 13 18:14:50 2003 -+++ freebsd_tcpdump/print-pflog.c Fri Jun 13 18:15:39 2003 -@@ -64,7 +64,9 @@ - u_int length = h->len; - u_int caplen = h->caplen; - const struct ip *ip; -+#ifdef INET6 - const struct ip6_hdr *ip6; -+#endif - const struct pfloghdr *hdr; - u_short res; - char reason[128], *why; -@@ -129,13 +131,16 @@ - if (xflag) - default_print((const u_char *)ip, - caplen - PFLOG_HDRLEN); -- } else { -+ } -+#ifdef INET6 -+ else { - ip6 = (struct ip6_hdr *)(p + PFLOG_HDRLEN); - ip6_print((const u_char *)ip6, length); - if (xflag) - default_print((const u_char *)ip6, - caplen - PFLOG_HDRLEN); - } -+#endif +--- Makefile.orig Sat Sep 27 10:17:32 2003 ++++ Makefile Sat Sep 27 10:17:46 2003 +@@ -6,7 +6,7 @@ + SUBDIR= libpcap + .endif + +-SUBDIR+= pfctl authpf ftp-proxy man pf pflog pfsync ++SUBDIR+= pfctl ftp-proxy man pf pflog pfsync + + .include "include/mk/util.mk" - out: - putchar('\n'); - - |