Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3203/ntfsprogs
Modified Files:
ntfscp.c utils.c
Log Message:
minor cleanup
Index: ntfscp.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfscp.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -p -r1.30 -r1.31
--- ntfscp.c 26 Oct 2005 22:54:57 -0000 1.30
+++ ntfscp.c 27 Oct 2005 20:42:10 -0000 1.31
@@ -4,7 +4,7 @@
* Copyright (c) 2004-2005 Yura Pakhuchiy
* Copyright (c) 2005 Anton Altaparmakov
*
- * This utility will overwrite files on ntfs volume
+ * This utility will overwrite files on NTFS volume.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Index: utils.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/utils.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -p -r1.56 -r1.57
--- utils.c 27 Oct 2005 18:45:45 -0000 1.56
+++ utils.c 27 Oct 2005 20:42:10 -0000 1.57
@@ -186,20 +186,21 @@ ntfs_volume * utils_mount_volume(const c
err = errno;
ntfs_log_perror("Couldn't mount device '%s'", device);
if (err == EPERM)
- ntfs_log_error("Windows was hibernated. Try to mount volume "
- "in windows, shut down and try "
+ ntfs_log_error("Windows was hibernated. Try to mount "
+ "volume in windows, shut down and try "
"again.\n");
if (err == EOPNOTSUPP)
- ntfs_log_error("Windows did not shut down properly. Try to "
- "mount volume in windows, shut down "
- "and try again.\n");
+ ntfs_log_error("Windows did not shut down properly. "
+ "Try to mount volume in windows, "
+ "shut down and try again.\n");
return NULL;
}
if (vol->flags & VOLUME_IS_DIRTY) {
ntfs_log_warning("Volume is dirty.\n");
if (!force) {
- ntfs_log_error("Run chkdsk and try again, or use the --force option.\n");
+ ntfs_log_error("Run chkdsk and try again, or use the "
+ "force option.\n");
ntfs_umount(vol, FALSE);
return NULL;
}
|