diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2008-10-13 14:02:21 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2008-10-13 14:02:21 +0000 |
commit | 87f3d4865508c4ef3923fe163c5bb15467715ee8 (patch) | |
tree | a3658e41f3f94f614d319f62d21d7fd8bd7b64eb /sys/netinet | |
parent | 972bf31c4f2a958cc7890fc0dae380192cfdb2ba (diff) |
disable the pcb linking for udp for the moment since there is some weird
bug with IPv6 in some circumstances. we'll find it one day...
lots of debugging dhill
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 46cc99ab4bf..0ab37681cb7 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.125 2008/09/03 12:51:39 henning Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.126 2008/10/13 14:02:20 henning Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -534,7 +534,7 @@ udp_input(struct mbuf *m, ...) /* * Locate pcb for datagram. */ -#if NPF > 0 +#if 0 if (m->m_pkthdr.pf.statekey) inp = ((struct pf_state_key *)m->m_pkthdr.pf.statekey)->inp; #endif |