Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5734/ntfsprogs
Modified Files:
mkntfs.8.in mkntfs.c
Log Message:
Prepare for next release.
Index: mkntfs.8.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/mkntfs.8.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- mkntfs.8.in 8 Jan 2006 21:01:23 -0000 1.21
+++ mkntfs.8.in 2 Feb 2006 14:40:53 -0000 1.22
@@ -1,4 +1,4 @@
-.\" Copyright (c) 2001\-2002 Anton Altaparmakov.
+.\" Copyright (c) 2001\-2006 Anton Altaparmakov.
.\" Copyright (c) 2005 Richard Russon.
.\" Copyright (c) 2005\-2006 Szabolcs Szakacsits.
.\" This file may be copied under the terms of the GNU Public License.
@@ -154,7 +154,7 @@ Select the version of NTFS you wish to c
Versions are upwards compatible and Windows 2000, which uses version "3.0",
can read/write both.
-If this option is omitted then version "1.2" is used.
+If this option is omitted then version "3.1" is used.
.TP
\fB\-n\fR, \fB\-\-no\-action\fR
Causes
Index: mkntfs.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/mkntfs.c,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -p -r1.128 -r1.129
--- mkntfs.c 8 Jan 2006 15:12:19 -0000 1.128
+++ mkntfs.c 2 Feb 2006 14:40:53 -0000 1.129
@@ -1,7 +1,7 @@
/**
* mkntfs - Part of the Linux-NTFS project.
*
- * Copyright (c) 2000-2005 Anton Altaparmakov
+ * Copyright (c) 2000-2006 Anton Altaparmakov
* Copyright (c) 2001-2005 Richard Russon
* Copyright (c) 2002-2006 Szabolcs Szakacsits
* Copyright (c) 2005 Erik Sornes
@@ -235,7 +235,7 @@ static void mkntfs_usage(void)
" -S, --sectors-per-track NUM Specify the number of sectors per track\n"
" -z, --mft-zone-multiplier NUM Set the MFT zone multiplier\n"
" -T, --zero-time Fake the time to be 00:00 UTC, Jan 1, 1970\n"
- " -N, --ntfs-version VERSION NTFS version: 3.1 or 1.2 (default)\n"
+ " -N, --ntfs-version VERSION NTFS version: 3.1 (default) or 1.2 (old)\n"
" -F, --force Force execution despite errors\n"
"\n"
"Output options:\n"
@@ -258,7 +258,7 @@ static void mkntfs_version(void)
{
ntfs_log_info("\n%s v%s (libntfs %s)\n\n", EXEC_NAME, VERSION, ntfs_libntfs_version());
ntfs_log_info("Create an NTFS volume on a user specified (block) device.\n\n");
- ntfs_log_info("Copyright (c) 2000-2005 Anton Altaparmakov\n");
+ ntfs_log_info("Copyright (c) 2000-2006 Anton Altaparmakov\n");
ntfs_log_info("Copyright (c) 2001-2005 Richard Russon\n");
ntfs_log_info("Copyright (c) 2002-2006 Szabolcs Szakacsits\n");
ntfs_log_info("Copyright (c) 2005 Erik Sornes\n");
@@ -4961,8 +4961,9 @@ static int mkntfs_redirect(struct mkntfs
g_vol->major_ver = opts.ver_major;
g_vol->minor_ver = opts.ver_minor;
} else {
- g_vol->major_ver = 1;
- g_vol->minor_ver = 2;
+ /* Create NTFS 3.1 (Windows XP) volumes by default. */
+ g_vol->major_ver = 3;
+ g_vol->minor_ver = 1;
}
if (opts.cluster_size >= 0)
g_vol->cluster_size = opts.cluster_size;
|