summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src
diff options
context:
space:
mode:
Diffstat (limited to 'libglusterfs/src')
-rw-r--r--libglusterfs/src/client_t.c1
-rw-r--r--libglusterfs/src/client_t.h1
-rw-r--r--libglusterfs/src/glusterfs.h2
3 files changed, 4 insertions, 0 deletions
diff --git a/libglusterfs/src/client_t.c b/libglusterfs/src/client_t.c
index eda1c465827..a51fb7a88c0 100644
--- a/libglusterfs/src/client_t.c
+++ b/libglusterfs/src/client_t.c
@@ -386,6 +386,7 @@ client_destroy (client_t *client)
GF_FREE (client->scratch_ctx.ctx);
GF_FREE (client->client_uid);
GF_FREE (client->subdir_mount);
+ GF_FREE (client->client_name);
GF_FREE (client);
out:
return;
diff --git a/libglusterfs/src/client_t.h b/libglusterfs/src/client_t.h
index 530c0a331ea..dff812b0602 100644
--- a/libglusterfs/src/client_t.h
+++ b/libglusterfs/src/client_t.h
@@ -33,6 +33,7 @@ typedef struct _client {
xlator_t *this;
int tbl_index;
char *client_uid;
+ char *client_name;
struct {
int flavour;
size_t len;
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h
index 8dcc4a367d0..8a55d724c6e 100644
--- a/libglusterfs/src/glusterfs.h
+++ b/libglusterfs/src/glusterfs.h
@@ -421,6 +421,8 @@ struct _cmd_args {
/* For the subdir mount */
char *subdir_mount;
+
+ char *process_name;
};
typedef struct _cmd_args cmd_args_t;