diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 23:10:07 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 23:10:07 +0000 |
commit | 7d5b5619d6e16f0ffde4b40eb6e974b3abaeec38 (patch) | |
tree | 75c68b71b16ae5c7234af25311a261545a542a7b /sys/net | |
parent | 8eab78c8852faa4c8235857c862c11335c196128 (diff) |
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/net')
-rw-r--r-- | sys/net/if.c | 3 | ||||
-rw-r--r-- | sys/net/if_bridge.c | 3 | ||||
-rw-r--r-- | sys/net/if_pflow.c | 3 | ||||
-rw-r--r-- | sys/net/pfkeyv2_convert.c | 3 | ||||
-rw-r--r-- | sys/net/pipex.c | 3 | ||||
-rw-r--r-- | sys/net/ppp_tty.c | 3 | ||||
-rw-r--r-- | sys/net/route.c | 3 |
7 files changed, 14 insertions, 7 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 161a7f76a86..29717302feb 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.255 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: if.c,v 1.256 2013/03/28 23:10:05 tedu Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -75,6 +75,7 @@ #include <sys/pool.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <sys/protosw.h> #include <sys/kernel.h> #include <sys/ioctl.h> diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index 493f315397f..d5cb23d6841 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.209 2013/03/28 16:55:27 deraadt Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.210 2013/03/28 23:10:05 tedu Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -41,6 +41,7 @@ #include <sys/systm.h> #include <sys/mbuf.h> #include <sys/socket.h> +#include <sys/timeout.h> #include <sys/ioctl.h> #include <sys/errno.h> #include <sys/kernel.h> diff --git a/sys/net/if_pflow.c b/sys/net/if_pflow.c index 91f995c9d05..28644c9c204 100644 --- a/sys/net/if_pflow.c +++ b/sys/net/if_pflow.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflow.c,v 1.26 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: if_pflow.c,v 1.27 2013/03/28 23:10:05 tedu Exp $ */ /* * Copyright (c) 2011 Florian Obser <florian@narrans.de> @@ -25,6 +25,7 @@ #include <sys/systm.h> #include <sys/mbuf.h> #include <sys/socket.h> +#include <sys/timeout.h> #include <sys/ioctl.h> #include <sys/kernel.h> #include <sys/sysctl.h> diff --git a/sys/net/pfkeyv2_convert.c b/sys/net/pfkeyv2_convert.c index 392a5c150b8..15c047f1946 100644 --- a/sys/net/pfkeyv2_convert.c +++ b/sys/net/pfkeyv2_convert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkeyv2_convert.c,v 1.38 2013/03/09 16:51:30 deraadt Exp $ */ +/* $OpenBSD: pfkeyv2_convert.c,v 1.39 2013/03/28 23:10:05 tedu Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@keromytis.org) * @@ -99,6 +99,7 @@ #include <sys/mbuf.h> #include <sys/kernel.h> #include <sys/socket.h> +#include <sys/timeout.h> #include <net/route.h> #include <net/if.h> diff --git a/sys/net/pipex.c b/sys/net/pipex.c index 3cd5a7d80b2..b15b3f79b05 100644 --- a/sys/net/pipex.c +++ b/sys/net/pipex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.c,v 1.39 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: pipex.c,v 1.40 2013/03/28 23:10:05 tedu Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -36,6 +36,7 @@ #include <sys/syslog.h> #include <sys/conf.h> #include <sys/time.h> +#include <sys/timeout.h> #include <sys/kernel.h> #include <net/if.h> diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c index 8d74b22dab2..04155998937 100644 --- a/sys/net/ppp_tty.c +++ b/sys/net/ppp_tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ppp_tty.c,v 1.25 2012/03/28 19:39:33 claudio Exp $ */ +/* $OpenBSD: ppp_tty.c,v 1.26 2013/03/28 23:10:05 tedu Exp $ */ /* $NetBSD: ppp_tty.c,v 1.12 1997/03/24 21:23:10 christos Exp $ */ /* @@ -103,6 +103,7 @@ #include <sys/mbuf.h> #include <sys/dkstat.h> #include <sys/socket.h> +#include <sys/timeout.h> #include <sys/ioctl.h> #include <sys/file.h> #include <sys/tty.h> diff --git a/sys/net/route.c b/sys/net/route.c index 0c4e1b2aa9b..d4510dd44ea 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.143 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: route.c,v 1.144 2013/03/28 23:10:05 tedu Exp $ */ /* $NetBSD: route.c,v 1.14 1996/02/13 22:00:46 christos Exp $ */ /* @@ -106,6 +106,7 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/timeout.h> #include <sys/domain.h> #include <sys/protosw.h> #include <sys/ioctl.h> |