mkfs.minix: In Minix V3 filesystems the maximum filename lenght is 60

chars and the dirsize is 64 bytes.
This commit is contained in:
Maurizio Lombardi 2011-11-21 19:46:26 +01:00
parent 75ab0b36a3
commit 3c5075e37b
1 changed files with 2 additions and 0 deletions

View File

@ -703,6 +703,8 @@ int main(int argc, char ** argv) {
break;
case '3':
fs_version = 3;
namelen = 60;
dirsize = 64;
break;
default:
usage();