Define name length differently for alpha in order to preserve

backwards compatibility.

Submitted by:	Andrew Gallatin <gallatin@cs.duke.edu>
Reviewed by:	mckusick
This commit is contained in:
Jordan K. Hubbard 1999-12-03 02:23:34 +00:00
parent b47337d347
commit 21a9e9a172
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54051

View File

@ -67,7 +67,12 @@ struct fid {
*/
#define MFSNAMELEN 16 /* length of fs type name, including null */
#ifdef __i386__
#define MNAMELEN 80 /* length of buffer for returned name */
#endif
#ifdef __alpha__
#define MNAMELEN 72 /* length of buffer for returned name */
#endif
struct statfs {
long f_spare2; /* placeholder */