aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_nfs4
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2005-06-01 09:39:36 +0000
committerXin LI <delphij@FreeBSD.org>2005-06-01 09:39:36 +0000
commit73ac45052f0c9d5ff55352ce80a0cec86b831908 (patch)
tree4c7df792f9460a2623bdeb425db125d58aaff586 /sbin/mount_nfs4
parent7a3afb563cd3501ecdc30c70d0e3a4a4a28e07b9 (diff)
downloadsrc-73ac45052f0c9d5ff55352ce80a0cec86b831908.tar.gz
src-73ac45052f0c9d5ff55352ce80a0cec86b831908.zip
Add a handy macro to represent null mount option, MOPT_NULL, and make
use of the macro in sbin/mount*'s, by replacing: mopts[] = { MOPT_STDOPTS, { NULL } } With: mopts[] = { MOPT_STDOPTS, MOPT_NULL } This change will help to reduce the situation that we don't explicitly initialize "struct mntopt"'s. It should not contribute to any functional/logical changes as far as I can tell.
Notes
Notes: svn path=/head/; revision=146853
Diffstat (limited to 'sbin/mount_nfs4')
-rw-r--r--sbin/mount_nfs4/mount_nfs4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_nfs4/mount_nfs4.c b/sbin/mount_nfs4/mount_nfs4.c
index b1ad123a446a..683fb93276ab 100644
--- a/sbin/mount_nfs4/mount_nfs4.c
+++ b/sbin/mount_nfs4/mount_nfs4.c
@@ -151,7 +151,7 @@ struct mntopt mopts[] = {
{ "lockd", 1, ALTF_NOLOCKD, 1 },
{ "inet4", 1, ALTF_NOINET4, 1 },
{ "inet6", 1, ALTF_NOINET6, 1 },
- { NULL }
+ MOPT_NULL
};
struct nfs_args nfsdefargs = {