From f433b68d83e3d5945731b987222fc187686f4d52 Mon Sep 17 00:00:00 2001 From: "flatcap.org!flatcap" Date: Sun, 28 Sep 2003 13:00:38 +0000 Subject: [PATCH] typo which made ntfslabel read only (Logical change 1.183) --- ntfsprogs/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfsprogs/utils.c b/ntfsprogs/utils.c index 9092efd8..82d24f21 100644 --- a/ntfsprogs/utils.c +++ b/ntfsprogs/utils.c @@ -140,7 +140,7 @@ ntfs_volume * utils_mount_volume (const char *device, unsigned long flags, BOOL if (!utils_valid_device (device, force)) return NULL; - vol = ntfs_mount (device, MS_RDONLY); + vol = ntfs_mount (device, flags); if (!vol) { Eprintf ("Couldn't mount device '%s': %s\n", device, strerror (errno)); return NULL;