diff options
author | hsu <hsu@FreeBSD.org> | 1996-03-11 03:06:45 +0000 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1996-03-11 03:06:45 +0000 |
commit | 6845ef45846122c8dab18e0731f03f9e00e4b60b (patch) | |
tree | 0f91dea47b747c8a0c7029ecdbbdf5ad23d242d0 /usr.bin/nfsstat | |
parent | dc7847c8b9af0dc04aa76a1c23b7a5bc7233dcb4 (diff) | |
download | FreeBSD-src-6845ef45846122c8dab18e0731f03f9e00e4b60b.zip FreeBSD-src-6845ef45846122c8dab18e0731f03f9e00e4b60b.tar.gz |
From Lite2: rename fs to vfs.
Diffstat (limited to 'usr.bin/nfsstat')
-rw-r--r-- | usr.bin/nfsstat/nfsstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/nfsstat/nfsstat.c b/usr.bin/nfsstat/nfsstat.c index f2f6831..bb677fb 100644 --- a/usr.bin/nfsstat/nfsstat.c +++ b/usr.bin/nfsstat/nfsstat.c @@ -43,7 +43,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "From: @(#)nfsstat.c 8.1 (Berkeley) 6/6/93";*/ static const char rcsid[] = - "$Id: nfsstat.c,v 1.4 1995/10/29 09:53:00 phk Exp $"; + "$Id: nfsstat.c,v 1.5 1995/10/30 15:44:44 phk Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -163,7 +163,7 @@ readstats(stp) int name[3]; size_t buflen = sizeof *stp; - name[0] = CTL_FS; + name[0] = CTL_VFS; name[1] = MOUNT_NFS; name[2] = NFS_NFSSTATS; |