eio: continue on access right error.

SVN revision: 77103
This commit is contained in:
Cedric BAIL 2012-09-27 00:55:41 +00:00
parent 53de66ea92
commit f1a25bc101
3 changed files with 6 additions and 1 deletions

View File

@ -47,3 +47,7 @@
2012-09-14 Cedric Bail
* Fix build with xattr without splice.
2012-09-27 Cedric Bail
* Don't stop on limited access right.

View File

@ -8,6 +8,7 @@ Additions:
Fixes:
- fix monitor shutdown when mainloop did never run.
- fix build with xattr and without splice.
- don't stop on limited access right.
Improvements:

View File

@ -89,7 +89,7 @@ _eio_file_recursiv_ls(Ecore_Thread *thread,
{
case EINA_FILE_DIR:
if (_eio_lstat(info->path, &buffer) != 0)
goto on_error;
continue;
if (S_ISLNK(buffer.st_mode))
info->type = EINA_FILE_LNK;