diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-13 13:23:31 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-02-10 22:08:46 +0100 |
commit | b8dcd1216e5ea7065213c750a92dabfe01fa3b70 (patch) | |
tree | 4b16dcc47c1cf43846ea92106825c559ad2bf443 /src/providers/ipa | |
parent | 2cbb879c517f2c756a2eb3962527979bac01ddab (diff) | |
download | sssd-b8dcd1216e5ea7065213c750a92dabfe01fa3b70.tar.gz sssd-b8dcd1216e5ea7065213c750a92dabfe01fa3b70.tar.bz2 sssd-b8dcd1216e5ea7065213c750a92dabfe01fa3b70.zip |
Add realm info to sss_domain_info
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_hbac_common.c | 2 | ||||
-rw-r--r-- | src/providers/ipa/ipa_subdomains_id.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/providers/ipa/ipa_hbac_common.c b/src/providers/ipa/ipa_hbac_common.c index 90ec0ce4..8a1c91ea 100644 --- a/src/providers/ipa/ipa_hbac_common.c +++ b/src/providers/ipa/ipa_hbac_common.c @@ -448,7 +448,7 @@ hbac_ctx_to_eval_request(TALLOC_CTX *mem_ctx, /* Get user the user name and groups, * take care of subdomain users as well */ if (strcasecmp(pd->domain, domain->name) != 0) { - user_dom = new_subdomain(tmp_ctx, domain, pd->domain, NULL, NULL); + user_dom = new_subdomain(tmp_ctx, domain, pd->domain, NULL, NULL, NULL); if (user_dom == NULL) { DEBUG(SSSDBG_OP_FAILURE, ("new_subdomain failed.\n")); ret = ENOMEM; diff --git a/src/providers/ipa/ipa_subdomains_id.c b/src/providers/ipa/ipa_subdomains_id.c index 481b9980..264eb03c 100644 --- a/src/providers/ipa/ipa_subdomains_id.c +++ b/src/providers/ipa/ipa_subdomains_id.c @@ -76,8 +76,9 @@ struct tevent_req *ipa_get_subdom_acct_send(TALLOC_CTX *memctx, } state->domain = new_subdomain(state, state->ctx->be->domain, ar->domain, - get_flat_name_from_subdomain_name(ctx->be,ar->domain), - NULL); + NULL, + get_flat_name_from_subdomain_name(ctx->be,ar->domain), + NULL); if (state->domain == NULL) { DEBUG(SSSDBG_OP_FAILURE, ("new_subdomain failed.\n")); ret = ENOMEM; |