diff options
author | 2007-09-01 18:49:27 +0000 | |
---|---|---|
committer | 2007-09-01 18:49:27 +0000 | |
commit | 8efe75c53947e0ee552b7b7c5f86953a4ddfbd77 (patch) | |
tree | c1099ec9604992be2aaadd1ece4de52341cf28b1 /sys/netinet/tcp_timer.c | |
parent | Use an int, not a size_t, to store the return value of snprintf(). (diff) | |
download | wireguard-openbsd-8efe75c53947e0ee552b7b7c5f86953a4ddfbd77.tar.xz wireguard-openbsd-8efe75c53947e0ee552b7b7c5f86953a4ddfbd77.zip |
since the
MGET* macros were changed to function calls, there wasn't any
need for the pool declarations and the inclusion of pool.h
From: tbert <bret.lambert@gmail.com>
Diffstat (limited to 'sys/netinet/tcp_timer.c')
-rw-r--r-- | sys/netinet/tcp_timer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index e3add336a5a..1f9780ddc05 100644 --- a/sys/netinet/tcp_timer.c +++ b/sys/netinet/tcp_timer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_timer.c,v 1.39 2007/06/15 18:23:07 markus Exp $ */ +/* $OpenBSD: tcp_timer.c,v 1.40 2007/09/01 18:49:28 henning Exp $ */ /* $NetBSD: tcp_timer.c,v 1.14 1996/02/13 23:44:09 christos Exp $ */ /* @@ -39,6 +39,7 @@ #include <sys/socketvar.h> #include <sys/protosw.h> #include <sys/kernel.h> +#include <sys/pool.h> #include <net/route.h> |