diff options
author | wollman <wollman@FreeBSD.org> | 2002-07-16 20:40:12 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-07-16 20:40:12 +0000 |
commit | 199f131d07cdddef380c857af8b4c23ded0b596e (patch) | |
tree | fb31e5868ca6f96c26e7cccb3428a3a12df4f810 /lib | |
parent | 9d3af4cbd88afdd8a8683d64b06cefeab624eb75 (diff) | |
download | FreeBSD-src-199f131d07cdddef380c857af8b4c23ded0b596e.zip FreeBSD-src-199f131d07cdddef380c857af8b4c23ded0b596e.tar.gz |
Don't ask me how I consistently turned struct statvfs into struct vfsconf....
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/statvfs.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/statvfs.3 b/lib/libc/gen/statvfs.3 index 372e536..e825790 100644 --- a/lib/libc/gen/statvfs.3 +++ b/lib/libc/gen/statvfs.3 @@ -40,9 +40,9 @@ .Sh SYNOPSIS .In sys/statvfs.h .Ft int -.Fn statvfs "const char *restrict path" "struct vfsconf *restrict buf" +.Fn statvfs "const char *restrict path" "struct statvfs *restrict buf" .Ft int -.Fn fstatvfs "int fd" "struct vfsconf *buf" +.Fn fstatvfs "int fd" "struct statvfs *buf" .Sh DESCRIPTION The .Fn statvfs @@ -57,7 +57,7 @@ Applications must pass a pathname or file descriptor which refers to a file on the filesystem in which they are interested. .Pp The -.Vt vfsconf +.Vt statvfs structure contains the following members: .Bl -tag -offset indent -width "f_namemax" .It Va f_namemax |