diff options
author | 2002-01-15 18:47:26 +0000 | |
---|---|---|
committer | 2002-01-15 18:47:26 +0000 | |
commit | 6b261f3f3bda46bd82ce65aff6dd51e55f5979b9 (patch) | |
tree | 39579217658dd579988bce72f6c7afa612d128c6 | |
parent | change tcpcb allocation to pool (diff) | |
download | wireguard-openbsd-6b261f3f3bda46bd82ce65aff6dd51e55f5979b9.tar.xz wireguard-openbsd-6b261f3f3bda46bd82ce65aff6dd51e55f5979b9.zip |
MNAMELEN is 90, not 32; peterw AT ifost.org.au
-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 */ |