<arrowdodger> Patch to unbreak eio build on systems without xattr: http://intara.org.ru/eio.diff

SVN revision: 60955
This commit is contained in:
Mike Blumenkrantz 2011-07-03 17:58:57 +00:00
parent ceecea1f3e
commit fc64fb5a71
1 changed files with 4 additions and 0 deletions

View File

@ -307,6 +307,7 @@ eio_file_xattr_set(const char *path,
Eio_Error_Cb error_cb,
const void *data)
{
#ifdef HAVE_XATTR
Eio_File_Xattr *async;
int iflags;
@ -342,6 +343,9 @@ eio_file_xattr_set(const char *path,
return NULL;
return &async->common;
#else
return NULL;
#endif
}
/**