diff options
author | 2013-03-28 23:10:05 +0000 | |
---|---|---|
committer | 2013-03-28 23:10:05 +0000 | |
commit | 638c25e3b539eff2e509df6c105c6da47cdad18d (patch) | |
tree | ecf8f3bcfca6548197f1a69bddf17971afe13b56 /sys/netinet/ipsec_input.c | |
parent | Add missing locking in i915_gem_retire_work_handler() and call (diff) | |
download | wireguard-openbsd-638c25e3b539eff2e509df6c105c6da47cdad18d.tar.xz wireguard-openbsd-638c25e3b539eff2e509df6c105c6da47cdad18d.zip |
code that calls timeout functions should include timeout.h
slipped by on i386, but the zaurus doesn't automagically pick it up.
spotted by patrick
Diffstat (limited to 'sys/netinet/ipsec_input.c')
-rw-r--r-- | sys/netinet/ipsec_input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index c5e0c104ad6..8614f1212df 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.109 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.110 2013/03/28 23:10:06 tedu Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -44,6 +44,7 @@ #include <sys/socket.h> #include <sys/sysctl.h> #include <sys/kernel.h> +#include <sys/timeout.h> #include <net/if.h> #include <net/netisr.h> |