summaryrefslogtreecommitdiff
path: root/libc/misc/mntent/mntent.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/mntent/mntent.c')
-rw-r--r--libc/misc/mntent/mntent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/mntent/mntent.c b/libc/misc/mntent/mntent.c
index 2bdd3c7a6..9e8fda613 100644
--- a/libc/misc/mntent/mntent.c
+++ b/libc/misc/mntent/mntent.c
@@ -8,7 +8,7 @@
struct mntent *getmntent(FILE * filep)
{
char *cp, *sep = " \t\n";
- static char buff[MNTMAXSTR];
+ static char buff[BUFSIZ];
static struct mntent mnt;
/* Loop on the file, skipping comment lines. - FvK 03/07/93 */