diff options
author | bde <bde@FreeBSD.org> | 1997-03-24 11:33:46 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-24 11:33:46 +0000 |
commit | e79c0a4ca0faee32b600b7c2b384b85fde731307 (patch) | |
tree | 02527e798dacc866eb4e0e16c035eefa20edc3f6 /sys/nfsclient | |
parent | 117209856b858251ebd6fec048828125547e131f (diff) | |
download | FreeBSD-src-e79c0a4ca0faee32b600b7c2b384b85fde731307.zip FreeBSD-src-e79c0a4ca0faee32b600b7c2b384b85fde731307.tar.gz |
Don't include <sys/ioctl.h> in the kernel. Stage 2: include
<sys/sockio.h> instead of <sys/ioctl.h> in network files.
Diffstat (limited to 'sys/nfsclient')
-rw-r--r-- | sys/nfsclient/nfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 0fe11d0..fcc6a4c 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -34,12 +34,12 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id$ + * $Id: nfs_vfsops.c,v 1.35 1997/02/22 09:42:44 peter Exp $ */ #include <sys/param.h> #include <sys/conf.h> -#include <sys/ioctl.h> +#include <sys/sockio.h> #include <sys/signal.h> #include <sys/proc.h> #include <sys/namei.h> |