diff options
| author | 2003-08-14 07:46:39 +0000 | |
|---|---|---|
| committer | 2003-08-14 07:46:39 +0000 | |
| commit | e4b1e213a3bb9c415673af7088ef07fda27034ef (patch) | |
| tree | ee8d88480c8ab606c4ac3a8d15133d8ac20fdc6d /sys/nfs/nfs_vfsops.c | |
| parent | add itimerspec data structure, defined by POSIX 1003.1b. ok marc@ (diff) | |
| download | wireguard-openbsd-e4b1e213a3bb9c415673af7088ef07fda27034ef.tar.xz wireguard-openbsd-e4b1e213a3bb9c415673af7088ef07fda27034ef.zip | |
constify vfsops; tedu@ ok
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
| -rw-r--r-- | sys/nfs/nfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 1f836ebd249..fca16ff1f8c 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_vfsops.c,v 1.50 2003/06/02 23:28:20 millert Exp $ */ +/* $OpenBSD: nfs_vfsops.c,v 1.51 2003/08/14 07:46:40 mickey Exp $ */ /* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */ /* @@ -78,7 +78,7 @@ int nfs_checkexp(struct mount *mp, struct mbuf *nam, /* * nfs vfs operations. */ -struct vfsops nfs_vfsops = { +const struct vfsops nfs_vfsops = { nfs_mount, nfs_start, nfs_unmount, |
