URL: https://github.com/SSSD/sssd/pull/187
Title: #187: Add support to lookup for users/groups in subdomains just by the 
user shortname

sumit-bose commented:
"""
The patches worked well in my test. If possible please add 
    diff --git a/src/responder/common/cache_req/cache_req_domain.c 
b/src/responder/common/cache_req/cache_req_domain.c
    index a4ccfb0..bbabd69 100644
    --- a/src/responder/common/cache_req/cache_req_domain.c
    +++ b/src/responder/common/cache_req/cache_req_domain.c
    @@ -77,7 +77,7 @@ cache_req_domain_new_list_from_string_list(TALLOC_CTX 
*mem_ctx,
             for (i = 0; resolution_order[i] != NULL; i++) {
                 name = resolution_order[i];
                 for (dom = domains; dom; dom = get_next_domain(dom, flag)) {
    -                if (strcmp(name, dom->name) != 0) {
    +                if (strcasecmp(name, dom->name) != 0) {
                         continue;
                     }
 
Otherwise ACK
"""

See the full comment at 
https://github.com/SSSD/sssd/pull/187#issuecomment-289796147
_______________________________________________
sssd-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to