diff options
Diffstat (limited to 'libglusterfs')
-rw-r--r-- | libglusterfs/src/compat.h | 1 | ||||
-rw-r--r-- | libglusterfs/src/syscall.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libglusterfs/src/compat.h b/libglusterfs/src/compat.h index 42d2fa1419e..228daf5da9d 100644 --- a/libglusterfs/src/compat.h +++ b/libglusterfs/src/compat.h @@ -230,6 +230,7 @@ int solaris_fgetxattr(int fd, const char* key, char *value, size_t size); int solaris_fsetxattr(int fd, const char* key, const char *value, size_t size, int flags); +int solaris_flistxattr(int fd, char *list, size_t size); #endif /* GF_SOLARIS_HOST_OS */ diff --git a/libglusterfs/src/syscall.c b/libglusterfs/src/syscall.c index f8e8c939a77..d350710e2db 100644 --- a/libglusterfs/src/syscall.c +++ b/libglusterfs/src/syscall.c @@ -369,7 +369,7 @@ sys_fsetxattr (int filedes, const char *name, const void *value, #endif #ifdef GF_SOLARIS_HOST_OS - solaris_fsetxattr (filedes, name, value, size, flags); + return solaris_fsetxattr (filedes, name, value, size, flags); #endif #ifdef GF_DARWIN_HOST_OS |