add missing initializer

This commit is contained in:
christos 2006-09-03 05:27:28 +00:00
parent 4c30050f13
commit 9c03e39ea2
2 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: smbfs_vfsops.c,v 1.53 2006/07/23 22:06:10 ad Exp $ */
/* $NetBSD: smbfs_vfsops.c,v 1.54 2006/09/03 05:28:40 christos Exp $ */
/*
* Copyright (c) 2000-2001, Boris Popov
@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: smbfs_vfsops.c,v 1.53 2006/07/23 22:06:10 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: smbfs_vfsops.c,v 1.54 2006/09/03 05:28:40 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_quota.h"
@ -139,6 +139,8 @@ struct vfsops smbfs_vfsops = {
(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
vfs_stdextattrctl,
smbfs_vnodeopv_descs,
0, /* vfs_refcount */
{ NULL, NULL },
};
VFS_ATTACH(smbfs_vfsops);

View File

@ -1,4 +1,4 @@
/* $NetBSD: smb_trantcp.c,v 1.24 2006/06/15 15:42:42 mlelstv Exp $ */
/* $NetBSD: smb_trantcp.c,v 1.25 2006/09/03 05:27:28 christos Exp $ */
/*
* Copyright (c) 2000-2001 Boris Popov
@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: smb_trantcp.c,v 1.24 2006/06/15 15:42:42 mlelstv Exp $");
__KERNEL_RCSID(0, "$NetBSD: smb_trantcp.c,v 1.25 2006/09/03 05:27:28 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -789,6 +789,7 @@ struct smb_tran_desc smb_tran_nbtcp_desc = {
smb_nbst_send, smb_nbst_recv,
smb_nbst_timo, smb_nbst_intr,
smb_nbst_getparam, smb_nbst_setparam,
smb_nbst_fatal
smb_nbst_fatal,
{ NULL, NULL },
};