diff options
| -rwxr-xr-x | libglusterfsclient/src/libglusterfsclient.c | 5 | ||||
| -rwxr-xr-x | libglusterfsclient/src/libglusterfsclient.h | 5 | 
2 files changed, 4 insertions, 6 deletions
diff --git a/libglusterfsclient/src/libglusterfsclient.c b/libglusterfsclient/src/libglusterfsclient.c index c241f1fc3f4..3cc1d505f1b 100755 --- a/libglusterfsclient/src/libglusterfsclient.c +++ b/libglusterfsclient/src/libglusterfsclient.c @@ -3367,9 +3367,8 @@ out:  }  int -glusterfs_lsetxattr (glusterfs_handle_t handle, const char *path, -                     const char *name, const void *value, size_t size, -                     int flags) +glusterfs_lsetxattr (const char *path, const char *name, const void *value, +                     size_t size, int flags)  {          int                     op_ret = -1;          char                    vpath[PATH_MAX]; diff --git a/libglusterfsclient/src/libglusterfsclient.h b/libglusterfsclient/src/libglusterfsclient.h index ad23e02a0cd..f047f5f9f81 100755 --- a/libglusterfsclient/src/libglusterfsclient.h +++ b/libglusterfsclient/src/libglusterfsclient.h @@ -390,9 +390,8 @@ glusterfs_setxattr (const char *path, const char *name, const void *value,                          size_t size, int flags);  int -glusterfs_lsetxattr (glusterfs_handle_t handle, const char *path, -                     const char *name, const void *value, size_t size, -                     int flags); +glusterfs_lsetxattr (const char *path, const char *name, const void *value, +                     size_t size, int flags);  int  glusterfs_fsetxattr (glusterfs_file_t fd, const char *name, const void *value,  | 
