"force" is not an inverted option; fix it.

This commit is contained in:
thorpej 2003-10-13 17:55:11 +00:00
parent 32ee02b1f9
commit fc8c8a08ca

View File

@ -1,4 +1,4 @@
/* $NetBSD: mntopts.h,v 1.3 2003/08/07 09:44:10 agc Exp $ */
/* $NetBSD: mntopts.h,v 1.4 2003/10/13 17:55:11 thorpej Exp $ */
/*-
* Copyright (c) 1994
@ -58,7 +58,7 @@ struct mntopt {
#define MOPT_IGNORE { "hidden", 0, MNT_IGNORE, 0 }
/* Control flags. */
#define MOPT_FORCE { "force", 1, MNT_FORCE, 0 }
#define MOPT_FORCE { "force", 0, MNT_FORCE, 0 }
#define MOPT_UPDATE { "update", 0, MNT_UPDATE, 0 }
#define MOPT_RELOAD { "reload", 0, MNT_RELOAD, 0 }
#define MOPT_GETARGS { "getargs", 0, MNT_GETARGS, 0 }