don't log errno reason after fuse_mount() since it's undefined, misleading
parent
ff1997ec13
commit
4665b48913
|
@ -2057,7 +2057,7 @@ static struct fuse_chan *try_fuse_mount(char *parsed_options)
|
||||||
|
|
||||||
fc = fuse_mount(opts.mnt_point, &margs);
|
fc = fuse_mount(opts.mnt_point, &margs);
|
||||||
if (!fc)
|
if (!fc)
|
||||||
ntfs_log_perror("FUSE mount point creation error");
|
ntfs_log_error("FUSE mount point creation failed\n");
|
||||||
free_args:
|
free_args:
|
||||||
fuse_opt_free_args(&margs);
|
fuse_opt_free_args(&margs);
|
||||||
return fc;
|
return fc;
|
||||||
|
|
Loading…
Reference in New Issue