From f5d8f91c4f85b28af01cc5ed559b689d18f082e8 Mon Sep 17 00:00:00 2001 From: szaka Date: Tue, 6 Feb 2007 19:08:16 +0000 Subject: [PATCH] ignore user specified blksize option --- src/ntfs-3g.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 19dbb8b0..343b8d33 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1820,6 +1820,9 @@ static char *parse_mount_options(const char *orig_opts) " You have to umount volume and then " "mount it once again.\n"); goto err_exit; + } else if (!strcmp(opt, "blksize")) { + ntfs_log_info("WARNING: blksize option is ignored " + "because ntfs-3g must calculate it.\n"); } else { /* Probably FUSE option. */ strcat(ret, opt); if (val) {