find functions now return errors. closes #24

This commit is contained in:
Antonio SJ Musumeci
2014-08-16 13:59:55 -04:00
parent 8f35406000
commit cfe7609bcd
21 changed files with 123 additions and 111 deletions

View File

@ -50,9 +50,9 @@ _truncate(const fs::SearchFunc searchFunc,
int error;
fs::PathVector paths;
searchFunc(srcmounts,fusepath,paths);
if(paths.empty())
return -ENOENT;
rv = searchFunc(srcmounts,fusepath,paths);
if(rv == -1)
return -errno;
rv = -1;
error = 0;