diff options
author | Pavel Reichl <preichl@redhat.com> | 2014-07-21 08:06:23 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-07-22 09:40:08 +0200 |
commit | db18dda869bc6c52a41797b2066cf121cf10f49c (patch) | |
tree | 7bdfa5d0ee9ce1d135202e1f87d63f95aafe0c6b /src/providers/ipa/ipa_access.c | |
parent | 9ca0071db0e226e4e65b2a80fdeddd5048ca8990 (diff) | |
download | sssd-db18dda869bc6c52a41797b2066cf121cf10f49c.tar.gz sssd-db18dda869bc6c52a41797b2066cf121cf10f49c.tar.xz sssd-db18dda869bc6c52a41797b2066cf121cf10f49c.zip |
UTIL: rename find_subdomain_by_name
The function was named "find_subdomain" yet it could find both main
domain and subdomain.
sed 's/find_subdomain_by_name/find_domain_by_name/' -i `find . -name "*.[ch]"`
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Diffstat (limited to 'src/providers/ipa/ipa_access.c')
-rw-r--r-- | src/providers/ipa/ipa_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_access.c b/src/providers/ipa/ipa_access.c index bb8e45cf9..ed52132ad 100644 --- a/src/providers/ipa/ipa_access.c +++ b/src/providers/ipa/ipa_access.c @@ -89,7 +89,7 @@ void ipa_access_handler(struct be_req *be_req) dom = be_ctx->domain; if (strcasecmp(pd->domain, be_ctx->domain->name) != 0) { /* Subdomain request, verify subdomain */ - dom = find_subdomain_by_name(be_ctx->domain, pd->domain, true); + dom = find_domain_by_name(be_ctx->domain, pd->domain, true); } /* First, verify that this account isn't locked. |