diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2012-05-13 07:43:32 +0200 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-06-01 22:20:18 -0700 |
commit | 3dc56cbd16b1074d7ca1a4fe4c5bf44400eb63ff (patch) | |
tree | 8e8a4ff69e3314f5d1fb96937442af30e2680704 /cli | |
parent | 6aa52274afb95c0c79df23d8a2093fbd557935d2 (diff) |
Use inet as default listener
This patch was proposed by Anand Babu Periasamy on gluster-devel@
It fixes the inet/inet6 mismatch between client/glusterfsd/glusterd at mine
BUG: 764655
Change-Id: I172570aa58ea08c4c74cfd28f121d3d4e02a55e0
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.com/3319
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: Anand Babu Periasamy <abperiasamy@gmail.com>
Reviewed-by: Anand Babu Periasamy <abperiasamy@gmail.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c index 89b5a8bd4..0d66ff282 100644 --- a/cli/src/cli.c +++ b/cli/src/cli.c @@ -528,7 +528,7 @@ cli_rpc_init (struct cli_state *state) if (ret) goto out; - ret = dict_set_str (options, "transport.address-family", "inet/inet6"); + ret = dict_set_str (options, "transport.address-family", "inet"); if (ret) goto out; |