diff options
author | Robert Mustacchi <rm@joyent.com> | 2015-02-19 02:30:02 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-02-19 02:30:02 +0000 |
commit | e1f322da435434b3a1f9c091e431efae6816ae4c (patch) | |
tree | 0f17b79d625d1192273214cfb335696d45c60d2c | |
parent | ae6fbeb2a828924a8295086a7b29de656b7e2bf2 (diff) | |
download | illumos-joyent-20150219.tar.gz |
OS-3837 bootfs_vfsops_tmpl ought be NULL-terminated20150219release-20150219
-rw-r--r-- | usr/src/uts/common/fs/bootfs/bootfs_vfsops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/src/uts/common/fs/bootfs/bootfs_vfsops.c b/usr/src/uts/common/fs/bootfs/bootfs_vfsops.c index b87e4b738e..e642e86169 100644 --- a/usr/src/uts/common/fs/bootfs/bootfs_vfsops.c +++ b/usr/src/uts/common/fs/bootfs/bootfs_vfsops.c @@ -10,7 +10,7 @@ */ /* - * Copyright (c) 2014 Joyent, Inc. All rights reserved. + * Copyright (c) 2015 Joyent, Inc. */ #include <sys/errno.h> @@ -227,6 +227,7 @@ static const fs_operation_def_t bootfs_vfsops_tmpl[] = { VFSNAME_UNMOUNT, { .vfs_unmount = bootfs_unmount }, VFSNAME_ROOT, { .vfs_root = bootfs_root }, VFSNAME_STATVFS, { .vfs_statvfs = bootfs_statvfs }, + NULL, NULL }; static int |