Browse Source

nfsopenhack: remove empty file check

pull/787/head
Antonio SJ Musumeci 4 years ago
parent
commit
139e61efaa
  1. 2
      src/fuse_open.cpp

2
src/fuse_open.cpp

@ -57,7 +57,7 @@ namespace l
if(rv == -1) if(rv == -1)
return (errno=EACCES,-1); return (errno=EACCES,-1);
if(StatUtil::writable_or_not_empty(st))
if(StatUtil::writable(st))
return (errno=EACCES,-1); return (errno=EACCES,-1);
rv = fs::chmod(fullpath_,(st.st_mode|S_IWUSR|S_IWGRP)); rv = fs::chmod(fullpath_,(st.st_mode|S_IWUSR|S_IWGRP));

Loading…
Cancel
Save