diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-01-15 18:47:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-01-15 18:47:27 +0000 |
commit | c079398fbcd5045757e9ff91dea1ab9d1d8c9e97 (patch) | |
tree | a196ac4af8fc8e4e2b80e00f76e09545b3a00a46 /lib/libc/sys | |
parent | 5fe417eb8842b572cc9e0eda5307be6b7d1ff3d4 (diff) |
MNAMELEN is 90, not 32; peterw AT ifost.org.au
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/statfs.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2 index 9ac4c675eb3..74d079edc37 100644 --- a/lib/libc/sys/statfs.2 +++ b/lib/libc/sys/statfs.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: statfs.2,v 1.13 2000/03/24 19:07:49 millert Exp $ +.\" $OpenBSD: statfs.2,v 1.14 2002/01/15 18:47:26 millert Exp $ .\" $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 @@ -60,7 +60,7 @@ structure defined as follows: typedef struct { int32_t val[2]; } fsid_t; #define MFSNAMELEN 16 /* length of fs type name, including NUL */ -#define MNAMELEN 32 /* length of buffer for returned name */ +#define MNAMELEN 90 /* length of buffer for returned name */ struct statfs { u_int32_t f_flags; /* copy of mount flags */ |