diff options
-rw-r--r-- | cli/src/cli3_1-cops.c | 3 | ||||
-rw-r--r-- | libglusterfs/src/compat.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/cli/src/cli3_1-cops.c b/cli/src/cli3_1-cops.c index 929f490c22e..210c881b61b 100644 --- a/cli/src/cli3_1-cops.c +++ b/cli/src/cli3_1-cops.c @@ -32,6 +32,7 @@ #include "cli1.h" #include "protocol-common.h" #include "cli-mem-types.h" +#include "compat.h" extern rpc_clnt_prog_t *cli_rpc_prog; extern int cli_op_ret; @@ -736,7 +737,7 @@ gf_cli3_1_replace_brick_cbk (struct rpc_req *req, struct iovec *iov, gf_log ("", GF_LOG_DEBUG, "sending getxattr"); - ret = getxattr ("/tmp/mnt/", "trusted.glusterfs.pump.status", status_msg, 8192); + ret = lgetxattr ("/tmp/mnt/", "trusted.glusterfs.pump.status", status_msg, 8192); fprintf (stdout, "%s\n", status_msg); gf_log ("", GF_LOG_DEBUG, diff --git a/libglusterfs/src/compat.h b/libglusterfs/src/compat.h index 2d9130aac06..51539648b22 100644 --- a/libglusterfs/src/compat.h +++ b/libglusterfs/src/compat.h @@ -191,6 +191,7 @@ int32_t gf_darwin_compat_setxattr (dict_t *dict); #define lchmod chmod #endif +#define lgetxattr(path, key, value, size) solaris_getxattr(path,key,value,size) enum { ATTR_CREATE = 1, #define XATTR_CREATE ATTR_CREATE |