diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-12 20:20:09 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-12 20:20:09 +0000 |
commit | 6d535ab0e1f598999d097b95f0db2d5d1d4a6dee (patch) | |
tree | d21a1384812f4c04bae268767928a595e3f13023 /sys | |
parent | 820d8aad1fd5b46b07f8480986cfe2e786aa78fb (diff) |
undo my last commit - theo says NFSMNT_RESVPORT is really not required
inside the kernel
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mount.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 3fe7eb5589f..615086936f6 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.16 1997/04/12 20:02:32 graichen Exp $ */ +/* $OpenBSD: mount.h,v 1.17 1997/04/12 20:20:08 graichen Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -361,7 +361,9 @@ struct nfs_args3 { /* * NFS mount option flags */ +#ifndef _KERNEL #define NFSMNT_RESVPORT 0x00000000 /* always use reserved ports */ +#endif /* ! _KERNEL */ #define NFSMNT_SOFT 0x00000001 /* soft mount (hard is default) */ #define NFSMNT_WSIZE 0x00000002 /* set write size */ #define NFSMNT_RSIZE 0x00000004 /* set read size */ |