Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16434/ntfsprogs
Modified Files:
utils.c
Log Message:
Clarify the logfile check/hibernation warning. (Yuval)
Index: utils.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/utils.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -p -r1.42 -r1.43
--- utils.c 21 Aug 2005 09:46:29 -0000 1.42
+++ utils.c 10 Sep 2005 07:55:58 -0000 1.43
@@ -160,8 +160,10 @@ ntfs_volume * utils_mount_volume (const
Eprintf("Couldn't mount device '%s': %s\n", device,
strerror(err));
if (err == EOPNOTSUPP)
- Eprintf("It seems that the logfile check failed. "
- "Try to mount volume in windows.\n");
+ Eprintf("Windows was either hibernated or did not "
+ "shut down properly. Try to mount "
+ "volume in windows, shut down and try "
+ "again.\n");
return NULL;
}
|