diff options
author | 2013-04-10 08:50:59 +0000 | |
---|---|---|
committer | 2013-04-10 08:50:59 +0000 | |
commit | 96c820636b53d5eb761dc8974342357acdf1b321 (patch) | |
tree | b5dbab679e4cb77579a8f3e316933e33789c08d1 /sys/net/pfkeyv2_parsemessage.c | |
parent | Merge usbd_get_device_desc() into the only function using them. (diff) | |
download | wireguard-openbsd-96c820636b53d5eb761dc8974342357acdf1b321.tar.xz wireguard-openbsd-96c820636b53d5eb761dc8974342357acdf1b321.zip |
Remove various external variable declaration from sources files and
move them to the corresponding header with an appropriate comment if
necessary.
ok guenther@
Diffstat (limited to 'sys/net/pfkeyv2_parsemessage.c')
-rw-r--r-- | sys/net/pfkeyv2_parsemessage.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/pfkeyv2_parsemessage.c b/sys/net/pfkeyv2_parsemessage.c index 2d8f6d26eaa..4be905bb45a 100644 --- a/sys/net/pfkeyv2_parsemessage.c +++ b/sys/net/pfkeyv2_parsemessage.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkeyv2_parsemessage.c,v 1.46 2012/06/29 14:48:04 mikeb Exp $ */ +/* $OpenBSD: pfkeyv2_parsemessage.c,v 1.47 2013/04/10 08:50:59 mpi Exp $ */ /* * @(#)COPYRIGHT 1.1 (NRL) 17 January 1995 @@ -76,6 +76,7 @@ #include <sys/mbuf.h> #include <sys/proc.h> #include <netinet/ip_ipsp.h> +#include <netinet/ip_var.h> #include <net/pfkeyv2.h> #if NPF > 0 @@ -83,8 +84,6 @@ #include <net/pfvar.h> #endif -extern int encdebug; - #ifdef ENCDEBUG #define DPRINTF(x) if (encdebug) printf x #else |