mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
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.
|
||
|---|---|---|
| .. | ||
| extern.h | ||
| getmntopts.3 | ||
| getmntopts.c | ||
| Makefile | ||
| mntopts.h | ||
| mount.8 | ||
| mount.c | ||
| mount_ufs.c | ||
| pathnames.h | ||
| vfslist.c | ||