Opened 7 years ago

Closed 7 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 Changed 7 years ago by abwillis

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)
       {

comment:2 Changed 7 years ago by Valery V. Sedletski

This was corrected in r171. Closing the ticket.

comment:3 Changed 7 years ago by Valery V. Sedletski

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.