From 4665b4891343689daec93238d8279fa9e716da23 Mon Sep 17 00:00:00 2001 From: szaka Date: Sat, 10 Mar 2007 01:01:40 +0000 Subject: [PATCH] don't log errno reason after fuse_mount() since it's undefined, misleading --- 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 304697b2..14776930 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -2057,7 +2057,7 @@ static struct fuse_chan *try_fuse_mount(char *parsed_options) fc = fuse_mount(opts.mnt_point, &margs); if (!fc) - ntfs_log_perror("FUSE mount point creation error"); + ntfs_log_error("FUSE mount point creation failed\n"); free_args: fuse_opt_free_args(&margs); return fc;