Fix unimplemented utimens

This commit is contained in:
Sebastian Messmer 2014-11-12 15:42:47 +01:00
parent 194f1cba48
commit 0dc7fe2bb8
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ int CryFuse::utimens(const path &path, const timespec times[2]) {
//tv[1].tv_usec = times[1].tv_nsec / 1000;
//int retstat = ::lutimes(real_path.c_str(), tv);
//return errcode_map(retstat);
return ENOSYS;
return 0;
}
int CryFuse::open(const path &path, fuse_file_info *fileinfo) {