From f0eb66c4ec3d9134bddf4ff22a82418ddf3bcdf7 Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sun, 14 Apr 2019 17:49:30 +0200 Subject: [PATCH] Fixing NTFS MFT should be attempted only if both TestDisk and Windows failed to access the filesystem. --- src/ntfs_fix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs_fix.c b/src/ntfs_fix.c index e0157a27..37542a39 100644 --- a/src/ntfs_fix.c +++ b/src/ntfs_fix.c @@ -226,7 +226,7 @@ int repair_MFT(disk_t *disk_car, partition_t *partition, const int verbose, cons { /* Use MFT mirror */ #ifdef HAVE_NCURSES - if(ask_confirmation("Fix MFT using its mirror ? (Y/N) - DANGEROUS NON REVERSIBLE OPERATION\nUse it ONLY IF Windows failed to access this filesystem.")!=0) + if(ask_confirmation("Fix MFT using its mirror ? (Y/N) - DANGEROUS NON REVERSIBLE OPERATION\nUse it ONLY IF TestDisk and Windows failed to access this filesystem.")!=0) use_MFT=2; else #endif