diff options
author | 2010-12-31 21:49:54 +0000 | |
---|---|---|
committer | 2010-12-31 21:49:54 +0000 | |
commit | 1b989a0ae6994e6e0169705f332a49f76ea159e4 (patch) | |
tree | ee1db809df61599b75d9360bfaa07d790b5f4a21 /usr.sbin/ripd/rde.c | |
parent | when stopping Rx, set the AR_DIAG_RX_ABORT bit too. (diff) | |
download | wireguard-openbsd-1b989a0ae6994e6e0169705f332a49f76ea159e4.tar.xz wireguard-openbsd-1b989a0ae6994e6e0169705f332a49f76ea159e4.zip |
Change <sys/types.h> to <sys/param.h> instead of assuming that some
system header pulls the latter in
ok millert@
Diffstat (limited to 'usr.sbin/ripd/rde.c')
-rw-r--r-- | usr.sbin/ripd/rde.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/rde.c b/usr.sbin/ripd/rde.c index f819d2e0d42..177adb2c363 100644 --- a/usr.sbin/ripd/rde.c +++ b/usr.sbin/ripd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.14 2009/11/02 20:28:49 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.15 2010/12/31 21:49:54 guenther Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -19,7 +19,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/types.h> +#include <sys/param.h> /* for MIN() */ #include <sys/socket.h> #include <sys/queue.h> #include <netinet/in.h> |