diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2014-04-15 17:32:38 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-04-22 17:29:40 +0200 |
commit | ef2455b63380ecd17bea94270ceaabe15dcf6456 (patch) | |
tree | e04d0c7901eb59cd469b056a704de3d355658d46 /src/responder | |
parent | c5a554f46f8ca0fd09afdb1f53dd9e229a68b86f (diff) | |
download | sssd-ef2455b63380ecd17bea94270ceaabe15dcf6456.tar.gz sssd-ef2455b63380ecd17bea94270ceaabe15dcf6456.tar.xz sssd-ef2455b63380ecd17bea94270ceaabe15dcf6456.zip |
DP: Remove unused 'force' parameter from the subdomain handler
The force argument was unused and made the code more complex than
required. Moreover, the force argument would have made the subdomain handler
behave differently than other identity domains -- when the front end decides
it's time to update the domains, the back end should just update them.
Handling multiple concurrent requests from multiple responders
(typically after startup) is handled at the generic back end level (see
be_queue_request).
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/responder')
-rw-r--r-- | src/responder/common/responder_get_domains.c | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/src/responder/common/responder_get_domains.c b/src/responder/common/responder_get_domains.c index 23b274b52..e86767f7c 100644 --- a/src/responder/common/responder_get_domains.c +++ b/src/responder/common/responder_get_domains.c @@ -29,16 +29,11 @@ static DBusMessage *sss_dp_get_domains_msg(void *pvt); struct sss_dp_domains_info { struct sss_domain_info *dom; const char *hint; - /* The DBus API expects its own Boolean type when formatting argument - * with DBUS_TYPE_BOOLEAN - */ - dbus_bool_t force; }; static struct tevent_req * get_subdomains_send(TALLOC_CTX *mem_ctx, struct resp_ctx *rctx, struct sss_domain_info *dom, - const bool force, const char *hint) { errno_t ret; @@ -58,7 +53,6 @@ get_subdomains_send(TALLOC_CTX *mem_ctx, struct resp_ctx *rctx, goto fail; } info->hint = hint; - info->force = force ? TRUE : FALSE; info->dom = dom; key = talloc_asprintf(state, "domains@%s", dom->name); @@ -102,15 +96,14 @@ sss_dp_get_domains_msg(void *pvt) } DEBUG(SSSDBG_TRACE_FUNC, - "Sending get domains request for [%s][%sforced][%s]\n", - info->dom->name, info->force ? "" : "not ", info->hint); + "Sending get domains request for [%s][%s]\n", + info->dom->name, info->hint); /* Send the hint argument to provider as well. This will * be useful for some cases of transitional trust where * the server might not know all trusted domains */ dbret = dbus_message_append_args(msg, - DBUS_TYPE_BOOLEAN, &info->force, DBUS_TYPE_STRING, &info->hint, DBUS_TYPE_INVALID); if (!dbret) { @@ -141,7 +134,6 @@ struct sss_dp_get_domains_state { struct resp_ctx *rctx; struct sss_domain_info *dom; const char *hint; - bool force; }; static void @@ -182,7 +174,6 @@ struct tevent_req *sss_dp_get_domains_send(TALLOC_CTX *mem_ctx, } state->rctx = rctx; - state->force = force; if (hint != NULL) { state->hint = hint; } else { @@ -204,8 +195,7 @@ struct tevent_req *sss_dp_get_domains_send(TALLOC_CTX *mem_ctx, goto immediately; } - subreq = get_subdomains_send(req, rctx, state->dom, - state->force, state->hint); + subreq = get_subdomains_send(req, rctx, state->dom, state->hint); if (subreq == NULL) { ret = ENOMEM; goto immediately; @@ -266,7 +256,7 @@ sss_dp_get_domains_process(struct tevent_req *subreq) return; } - subreq = get_subdomains_send(req, state->rctx, state->dom, state->force, state->hint); + subreq = get_subdomains_send(req, state->rctx, state->dom, state->hint); if (subreq == NULL) { ret = ENOMEM; goto fail; |