From c7d8d2ea1e4ad9e247b5876cf17d3a6e0d9af9ad Mon Sep 17 00:00:00 2001 From: Jeff Darcy Date: Wed, 8 Jul 2015 09:52:15 -0400 Subject: glusterd: use a real host name (instead of numeric) when we have one Change-Id: Ie9cc201204d3d613e3e585cab066a07283db902c BUG: 1241275 Signed-off-by: Jeff Darcy Reviewed-on: http://review.gluster.org/11569 Tested-by: Gluster Build System Reviewed-by: Krishnan Parthasarathi Reviewed-by: Shyamsundar Ranganathan Reviewed-by: Raghavendra Bhat Tested-by: NetBSD Build System --- xlators/mgmt/glusterd/src/glusterd-utils.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 707533efea6..b8934c45ab6 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -6461,6 +6461,7 @@ glusterd_remote_hostname_get (rpcsvc_request_t *req, char *remote_host, int len) char *name = NULL; char *hostname = NULL; char *tmp_host = NULL; + char *canon = NULL; int ret = 0; name = req->trans->peerinfo.identifier; @@ -6475,6 +6476,11 @@ glusterd_remote_hostname_get (rpcsvc_request_t *req, char *remote_host, int len) goto out; } + if ((gf_get_hostname_from_ip(hostname,&canon) == 0) && canon) { + GF_FREE(tmp_host); + tmp_host = hostname = canon; + } + strncpy (remote_host, hostname, strlen (hostname)); -- cgit