MFC: allow 2 more chars for long device names.

This commit is contained in:
Jordan K. Hubbard 1999-12-02 02:56:13 +00:00
parent 6ac1294df2
commit 3b5ab1280f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/3/; revision=54015

View File

@ -420,13 +420,13 @@ getNewfsCmd(PartInfo *p)
sstrncpy(p->newfs_cmd, val, NEWFS_CMD_MAX);
}
#define MAX_MOUNT_NAME 12
#define MAX_MOUNT_NAME 10
#define PART_PART_COL 0
#define PART_MOUNT_COL 8
#define PART_MOUNT_COL 10
#define PART_SIZE_COL (PART_MOUNT_COL + MAX_MOUNT_NAME + 3)
#define PART_NEWFS_COL (PART_SIZE_COL + 8)
#define PART_OFF 38
#define PART_OFF 40
#define TOTAL_AVAIL_LINES (10)
#define PSLICE_SHOWABLE (4)