check.c | 47 int dosfs; local in function:checkfilesys 59 dosfs = open(filename, rdonly ? O_RDONLY : O_RDWR, 0); 60 if (dosfs < 0 && !rdonly) { 61 dosfs = open(filename, O_RDONLY, 0); 62 if (dosfs >= 0) 70 if (dosfs < 0) { 75 mod = readboot(dosfs, &boot); 77 close(dosfs); 89 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat); 91 close(dosfs); [all...] |