diff options
| author | thorpej <thorpej@NetBSD.org> | 2003-10-13 17:55:11 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2003-10-13 17:55:11 +0000 |
| commit | fc8c8a08ca0f1a9ad4192330a35b1b84e2ad72dd (patch) | |
| tree | afe2e25cf1cda939741ce678e895c6ed9d314114 /include | |
| parent | 32ee02b1f91285c3830cf00a6129504de7ba9d5e (diff) | |
"force" is not an inverted option; fix it.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mntopts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mntopts.h b/include/mntopts.h index 44a95f891d3..859ff6fabaf 100644 --- a/include/mntopts.h +++ b/include/mntopts.h @@ -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 } |
