delphij ee88062325 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.
2005-06-01 09:39:36 +00:00
..
2005-05-02 10:31:27 +00:00
2005-05-01 09:50:02 +00:00
2005-04-08 10:32:22 +00:00
2005-03-11 22:07:04 +00:00
2005-04-29 07:57:50 +00:00
2005-05-02 10:04:16 +00:00
2005-04-14 20:27:30 +00:00
2005-05-20 03:58:53 +00:00
2005-05-02 10:13:38 +00:00