From 30e099de1765bca64766b3c8acc9189403fcbc2b Mon Sep 17 00:00:00 2001 From: szaka Date: Tue, 14 Nov 2006 18:47:19 +0000 Subject: [PATCH] point users to FUSE setup/install problem instead suggesting an NTFS issue --- src/ntfs-3g.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index afeca854..fa226a27 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1985,7 +1985,7 @@ static struct fuse_chan *try_fuse_mount(char *parsed_options) fc = fuse_mount(opts.mnt_point, &margs); if (!fc) - ntfs_log_error("Failed to mount NTFS.\n"); + ntfs_log_error("Failed to create FUSE mount point.\n"); free_args: fuse_opt_free_args(&margs); return fc; @@ -2056,7 +2056,7 @@ int main(int argc, char *argv[]) fc = try_fuse_mount(parsed_options); if (!fc) { if (errno == ENOENT || errno == ENODEV) { - ntfs_log_error("Retrying mount ...\n"); + ntfs_log_error("Retry to create FUSE mount point ...\n"); load_fuse_module(1); fc = try_fuse_mount(parsed_options); }