From ccbd793fae86ad8a3503a66e3df3d04d065712c3 Mon Sep 17 00:00:00 2001 From: jpandre Date: Tue, 9 Oct 2007 08:21:14 +0000 Subject: [PATCH] An update in utils_mount_volume() which was missing --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 880dd575..ce76f675 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1906,7 +1906,7 @@ static ntfs_volume *ntfs_open(const char *device, char *mntpoint, int blkdev) if (ctx->force) flags |= MS_FORCE; - ctx->vol = utils_mount_volume(device, mntpoint, flags, ctx->force); + ctx->vol = utils_mount_volume(device, mntpoint, flags); return ctx->vol; }