fix: 'noatime' additionally and unconditionally was passed to fuse

master
szaka 2008-03-30 20:10:56 +00:00
parent c78280181d
commit 2a3d44e3d6
1 changed files with 1 additions and 1 deletions

View File

@ -1905,7 +1905,7 @@ static char *parse_mount_options(const char *orig_opts)
goto err_exit;
else if (ctx->atime == ATIME_ENABLED && strappend(&ret, "atime,"))
goto err_exit;
else if (strappend(&ret, "noatime,"))
else if (ctx->atime == ATIME_DISABLED && strappend(&ret, "noatime,"))
goto err_exit;
if (strappend(&ret, "fsname="))