Opened 9 years ago
Closed 9 years ago
#32 closed defect (fixed)
CHKDSK message advising to run check under Windows needs updating
| Reported by: | Lewis Rosenthal | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | GA |
| Component: | utilities | Version: | |
| Severity: | medium | Keywords: | |
| Cc: |
Description
Currently (0.10a7), when CHKDSK cannot fully correct a disk, the message displayed is:
Still errors found on disk. Please run Windows 95 ScanDisk!
I think we need to update/correct this to:
Errors may still exist on this volume. Recommended action: Run CHKDSK under Windows.
Change History (3)
comment:1 by , 9 years ago
comment:3 by , 9 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Index: lib/save/ufat32.c =================================================================== --- lib/save/ufat32.c (revision 170) +++ lib/save/ufat32.c (working copy) @@ -368,7 +368,7 @@ if (rc) { printf("The copies of the FATs do not match.\n"); - printf("Please run SCANDISK to correct this problem.\n"); + printf("Please run CHKDISK under Windows to correct this problem.\n"); return rc; } rc = CheckFiles(pCD); @@ -456,7 +456,7 @@ if (!pCD->fFix) iShowMessage(pCD, 1339, 0); else - printf("Still errors found on disk. Please run Windows 95 ScanDisk!\n"); + printf("Errors may still exist on this volume. Recommended action: Run CHKDSK under Windows.\n"); } else if (pCD->fFix) DosDevIOCtl(NULL, NULL, FAT32_MARKVOLCLEAN, IOCTL_FAT32, pCD->hDisk); Index: ufat32/chkdsk.c =================================================================== --- ufat32/chkdsk.c (revision 170) +++ ufat32/chkdsk.c (working copy) @@ -566,7 +566,7 @@ if (rc) { printf("The copies of the FATs do not match.\n"); - printf("Please run SCANDISK to correct this problem.\n"); + printf("Please run CHKDISK under Windows to correct this problem.\n"); return rc; } rc = CheckFiles(pCD); @@ -654,7 +654,7 @@ if (!pCD->fFix) iShowMessage(pCD, 1339, 0); else - printf("Still errors found on disk. Please run Windows 95 ScanDisk!\n"); + printf("Errors may still exist on this volume. Recommended action: Run CHKDSK under Windows.\n"); } else if (pCD->fFix) {