diff options
author | yinyin <maillistofyinyin@gmail.com> | 2012-08-01 21:08:22 +0800 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-08-02 07:58:37 -0700 |
commit | 91bf4e5137b56cf52162e30db92df02ef9964b10 (patch) | |
tree | 0768fe38fb46d5399e83c4eee8681831e50fecf1 | |
parent | 53011831614791b6858bf9735fe96d59a1a29f1e (diff) |
rpc-lib: fix rpc_clnt_reconfig log on remote_host change
Change-Id: I5446d7fb975d4fb8105264e026fef165ae73a925
BUG: 764890
Signed-off-by: yinyin <maillistofyinyin@gmail.com>
Reviewed-on: http://review.gluster.com/3773
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
-rw-r--r-- | rpc/rpc-lib/src/rpc-clnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/rpc-lib/src/rpc-clnt.c b/rpc/rpc-lib/src/rpc-clnt.c index f099fb6b50a..9fba3fe412a 100644 --- a/rpc/rpc-lib/src/rpc-clnt.c +++ b/rpc/rpc-lib/src/rpc-clnt.c @@ -1664,7 +1664,7 @@ rpc_clnt_reconfig (struct rpc_clnt *rpc, struct rpc_clnt_config *config) if (strcmp (rpc->conn.config.remote_host, config->remote_host)) gf_log (rpc->conn.trans->name, GF_LOG_INFO, - "changing port to %s (from %s)", + "changing hostname to %s (from %s)", config->remote_host, rpc->conn.config.remote_host); FREE (rpc->conn.config.remote_host); |