commit | c0975199bea22a1f4f99f496ee32c3fac854bed5 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sun Sep 17 15:06:34 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sun Sep 17 15:06:34 2006 +0000 |
tree | 35314b106d48048849631700e6a112b36d91a923 | |
parent | 9c99b62b9eec826065496f895ae9eaece08ecc88 [diff] [blame] |
mount: nfs_strerror's static buffer was bigger than needed.
diff --git a/util-linux/mount.c b/util-linux/mount.c index 5539f1e..57d2d04 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c
@@ -515,7 +515,7 @@ static char *nfs_strerror(int status) { int i; - static char buf[256]; + static char buf[sizeof("unknown nfs status return value: ") + sizeof(int)*3]; for (i = 0; nfs_errtbl[i].stat != -1; i++) { if (nfs_errtbl[i].stat == status)