diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2007-09-20 15:30:42 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2007-09-20 15:30:42 +0000 |
commit | 4818bcdb512a35e2610aaeefc5b16df2041945cd (patch) | |
tree | 96e86d919c43d84025a1addbd5e6f225cfa6e1d0 /sys | |
parent | e3c442fa3fbc675f8c1fdecb938a98cc041a198e (diff) |
Don't rely on mbuf.h including pool.h (which is going to stop soon)
ok thib@ henning@ art@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/nfs/nfs_socket.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c index 38fe77d854f..b01c9f45369 100644 --- a/sys/nfs/nfs_socket.c +++ b/sys/nfs/nfs_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_socket.c,v 1.50 2007/09/20 12:54:31 thib Exp $ */ +/* $OpenBSD: nfs_socket.c,v 1.51 2007/09/20 15:30:41 blambert Exp $ */ /* $NetBSD: nfs_socket.c,v 1.27 1996/04/15 20:20:00 thorpej Exp $ */ /* @@ -53,6 +53,7 @@ #include <sys/syslog.h> #include <sys/tprintf.h> #include <sys/namei.h> +#include <sys/pool.h> #include <netinet/in.h> #include <netinet/tcp.h> |