diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli-quotad-client.c | 2 | ||||
-rw-r--r-- | cli/src/cli.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/src/cli-quotad-client.c b/cli/src/cli-quotad-client.c index d00dfac6e60..5be9c80c858 100644 --- a/cli/src/cli-quotad-client.c +++ b/cli/src/cli-quotad-client.c @@ -126,7 +126,7 @@ cli_quotad_clnt_init (xlator_t *this, dict_t *options) if (ret) goto out; - rpc = rpc_clnt_new (options, this->ctx, this->name, 16); + rpc = rpc_clnt_new (options, this, this->name, 16); if (!rpc) goto out; diff --git a/cli/src/cli.c b/cli/src/cli.c index 53c9c3b297b..cc2862c5318 100644 --- a/cli/src/cli.c +++ b/cli/src/cli.c @@ -626,7 +626,7 @@ cli_rpc_init (struct cli_state *state) goto out; } - rpc = rpc_clnt_new (options, this->ctx, this->name, 16); + rpc = rpc_clnt_new (options, this, this->name, 16); if (!rpc) goto out; |