diff options
author | 1997-04-12 20:02:32 +0000 | |
---|---|---|
committer | 1997-04-12 20:02:32 +0000 | |
commit | becfc752b45f3e8a33651d38fece45eafe9530fe (patch) | |
tree | 10e192cd2155983288a2b4d62bfb34bcd5e5c912 | |
parent | make it compile (missing include of ultrix_util.h - the other (diff) | |
download | wireguard-openbsd-becfc752b45f3e8a33651d38fece45eafe9530fe.tar.xz wireguard-openbsd-becfc752b45f3e8a33651d38fece45eafe9530fe.zip |
remove #ifndef _KERNEL around NFSMNT_RESVPORT:
* this is required to get src/sys/compat/ultrix compiled
* in NetBSD it is'nt #ifndef'ed _KERNEL too
if anyone objects to that change please speak up now ...
-rw-r--r-- | sys/sys/mount.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 0cc7364e581..3fe7eb5589f 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.15 1997/03/09 19:26:05 millert Exp $ */ +/* $OpenBSD: mount.h,v 1.16 1997/04/12 20:02:32 graichen Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -361,9 +361,7 @@ 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 */ |