From d34961fdcf5a999d9debee3d1d8e255457798295 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 9 Jan 2013 16:45:57 -0500 Subject: Remove sysdb argument from ipa_host_info_send() --- src/providers/ipa/ipa_hostid.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/providers/ipa/ipa_hostid.c') diff --git a/src/providers/ipa/ipa_hostid.c b/src/providers/ipa/ipa_hostid.c index a943cdb02..b60876cbd 100644 --- a/src/providers/ipa/ipa_hostid.c +++ b/src/providers/ipa/ipa_hostid.c @@ -30,7 +30,6 @@ struct hosts_get_state { struct tevent_context *ev; struct ipa_hostid_ctx *ctx; struct sdap_id_op *op; - struct sysdb_ctx *sysdb; struct sss_domain_info *domain; const char *name; const char *alias; @@ -171,7 +170,6 @@ hosts_get_send(TALLOC_CTX *memctx, goto fail; } - state->sysdb = ctx->be->domain->sysdb; state->domain = ctx->be->domain; state->name = name; state->alias = alias; @@ -225,7 +223,7 @@ hosts_get_connect_done(struct tevent_req *subreq) return; } - subreq = ipa_host_info_send(state, state->ev, state->sysdb, + subreq = ipa_host_info_send(state, state->ev, sdap_id_op_handle(state->op), state->ctx->sdap_id_ctx->opts, state->name, state->ctx->ipa_opts->host_map, NULL, @@ -294,7 +292,7 @@ hosts_get_done(struct tevent_req *subreq) goto done; } - ret = sysdb_store_ssh_host(state->sysdb, state->domain, + ret = sysdb_store_ssh_host(state->domain->sysdb, state->domain, state->name, state->alias, now, attrs); if (ret != EOK) { -- cgit