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

N2009_11_14_FIXES
szaka 2008-03-31 19:02:44 +00:00
parent 2f85653372
commit a07e900359
1 changed files with 1 additions and 1 deletions

View File

@ -2238,7 +2238,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="))