diff options
author | delphij <delphij@FreeBSD.org> | 2005-06-10 09:51:43 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2005-06-10 09:51:43 +0000 |
commit | 5173bfd387bd8bedfdc02dd719466c21427d9216 (patch) | |
tree | 0e6a4ab8b8aa5578febfa41f0a076ce9ae4cf5a8 /sbin/mount_nullfs | |
parent | aaea0db09900b2d37eac80912e4997bdb8ca9e6d (diff) | |
download | FreeBSD-src-5173bfd387bd8bedfdc02dd719466c21427d9216.zip FreeBSD-src-5173bfd387bd8bedfdc02dd719466c21427d9216.tar.gz |
Use MOPT_END in favor of MOPT_NULL, which better describes the purporse
of the macro.
Diffstat (limited to 'sbin/mount_nullfs')
-rw-r--r-- | sbin/mount_nullfs/mount_nullfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mount_nullfs/mount_nullfs.c b/sbin/mount_nullfs/mount_nullfs.c index 8fefe16..4105624 100644 --- a/sbin/mount_nullfs/mount_nullfs.c +++ b/sbin/mount_nullfs/mount_nullfs.c @@ -59,7 +59,7 @@ static const char rcsid[] = struct mntopt mopts[] = { MOPT_STDOPTS, - MOPT_NULL + MOPT_END }; int subdir(const char *, const char *); |