diff options
author | 2000-09-22 17:51:46 +0000 | |
---|---|---|
committer | 2000-09-22 17:51:46 +0000 | |
commit | 23a75ce8ceba33d26b000a0023c68b7cd41f3d8c (patch) | |
tree | 226238ac2da60e27370659e79aa374f4dfb21db0 | |
parent | - Introduce character classes into the console mouse functionality. Lifted from (diff) | |
download | wireguard-openbsd-23a75ce8ceba33d26b000a0023c68b7cd41f3d8c.tar.xz wireguard-openbsd-23a75ce8ceba33d26b000a0023c68b7cd41f3d8c.zip |
Move the PI_MAGIC define outside the INET6 ifdef block (doh!)
-rw-r--r-- | sys/netinet/udp_usrreq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 1c4d2fa888f..ce62b662b5e 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.48 2000/09/19 03:21:00 angelos Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.49 2000/09/22 17:51:46 angelos Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -91,11 +91,11 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. #include <netinet/icmp6.h> #include <netinet6/ip6protosw.h> -#define PI_MAGIC 0xdeadbeef /* XXX the horror! */ - extern int ip6_defhlim; #endif /* INET6 */ +#define PI_MAGIC 0xdeadbeef /* XXX the horror! */ + /* * UDP protocol implementation. * Per RFC 768, August, 1980. |