diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2008-06-11 04:52:28 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2008-06-11 04:52:28 +0000 |
commit | d5fd8ef27566a1cc60baba9cf6624cc6e82098b7 (patch) | |
tree | 707b59d209d9d71dd13f5f615e37d108ce76106f /sys/nfs/nfs_srvcache.c | |
parent | 756bea63ce1503e31fa7dd33982153bc7c867b83 (diff) |
Canonical for() -> queue.h FOREACH macro conversions.
Also, it is historical practice to #include <sys/queue.h>
when using queue.h macros.
ok thib@ krw@
special thanks to krw@ for reminders vice violence
Diffstat (limited to 'sys/nfs/nfs_srvcache.c')
-rw-r--r-- | sys/nfs/nfs_srvcache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/nfs/nfs_srvcache.c b/sys/nfs/nfs_srvcache.c index 8d64e7cd1a7..b4d637a728b 100644 --- a/sys/nfs/nfs_srvcache.c +++ b/sys/nfs/nfs_srvcache.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_srvcache.c,v 1.16 2008/04/14 10:39:19 thib Exp $ */ +/* $OpenBSD: nfs_srvcache.c,v 1.17 2008/06/11 04:52:27 blambert Exp $ */ /* $NetBSD: nfs_srvcache.c,v 1.12 1996/02/18 11:53:49 fvdl Exp $ */ /* @@ -48,6 +48,7 @@ #include <sys/mbuf.h> #include <sys/malloc.h> #include <sys/socket.h> +#include <sys/queue.h> #include <netinet/in.h> #include <nfs/rpcv2.h> |