diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-09-22 17:51:47 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-09-22 17:51:47 +0000 |
commit | 95faaab6d279e5a9803599f2a00bccf119bf76c1 (patch) | |
tree | 460446882d218231cfb118bf78e4e77c3164299a /sys/netinet | |
parent | 5af8bca441cf999491693c8b5f57729b4ae44610 (diff) |
Move the PI_MAGIC define outside the INET6 ifdef block (doh!)
Diffstat (limited to 'sys/netinet')
-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. |