Quick and dirty (?) fix for noatime option. The WebNFS changes

broke it by using the same value for MNT_EXPUBLIC as for MNT_NOATIME.
Just use a different value for MNT_EXPUBLIC.
This commit is contained in:
Bruce Evans 1997-07-22 08:03:19 +00:00
parent 9c9cb2bffe
commit 8b0597671f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27606

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mount.h 8.21 (Berkeley) 5/20/95
* $Id: mount.h,v 1.42 1997/04/06 11:14:13 dufault Exp $
* $Id: mount.h,v 1.43 1997/07/16 18:04:52 dfr Exp $
*/
#ifndef _SYS_MOUNT_H_
@ -175,7 +175,7 @@ struct mount {
#define MNT_DEFEXPORTED 0x00000200 /* exported to the world */
#define MNT_EXPORTANON 0x00000400 /* use anon uid mapping for everyone */
#define MNT_EXKERB 0x00000800 /* exported with Kerberos uid mapping */
#define MNT_EXPUBLIC 0x10000000 /* public export (WebNFS) */
#define MNT_EXPUBLIC 0x20000000 /* public export (WebNFS) */
/*
* Flags set by internal operations.