diff options
author | Rajiv Aaron Manglani <rajiv@gentoo.org> | 2009-08-12 01:11:50 +0000 |
---|---|---|
committer | Rajiv Aaron Manglani <rajiv@gentoo.org> | 2009-08-12 01:11:50 +0000 |
commit | 3654ec09eac6f269c8c04a908258228b013c6cf4 (patch) | |
tree | caf6f160aa6ab2a45923804128ba50d8e6098f23 /net-dns/dnstop/files | |
parent | Fix building with GCC 4.4+ wrt #273560. (diff) | |
download | gentoo-2-3654ec09eac6f269c8c04a908258228b013c6cf4.tar.gz gentoo-2-3654ec09eac6f269c8c04a908258228b013c6cf4.tar.bz2 gentoo-2-3654ec09eac6f269c8c04a908258228b013c6cf4.zip |
cleanup.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-dns/dnstop/files')
-rw-r--r-- | net-dns/dnstop/files/dnstop-20070510-handle_ipv6.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net-dns/dnstop/files/dnstop-20070510-handle_ipv6.patch b/net-dns/dnstop/files/dnstop-20070510-handle_ipv6.patch deleted file mode 100644 index 4405b7686c67..000000000000 --- a/net-dns/dnstop/files/dnstop-20070510-handle_ipv6.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -uNr dnstop-20070510/dnstop.c dnstop-20070510-r1/dnstop.c ---- dnstop-20070510/dnstop.c 2007-05-11 00:51:12.000000000 -0400 -+++ dnstop-20070510-r1/dnstop.c 2007-06-17 18:57:26.000000000 -0400 -@@ -825,8 +825,10 @@ - memcpy(&family, pkt, sizeof(family)); - if (AF_INET == family) - return handle_ipv4((struct ip *)(pkt + 4), len - 4); -+#if USE_IPV6 - if (AF_INET6 == family) - return handle_ipv6((struct ip6_hdr *)(pkt + 4), len - 4); -+#endif - return 0; - } - -@@ -838,8 +840,10 @@ - memcpy(&family, pkt, sizeof(family)); - if (AF_INET == ntohl(family)) - return handle_ipv4((struct ip *)(pkt + 4), len - 4); -+#if USE_IPV6 - if (AF_INET6 == ntohl(family)) - return handle_ipv6((struct ip6_hdr *)(pkt + 4), len - 4); -+#endif - return 0; - } - |