From ac7a7ee3d1e138818a1ed78758f7dd3c3306a56b Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Fri, 26 Oct 2012 09:28:45 +0200 Subject: Make sub-domains case-insensitive Currently the only type of supported sub-domains are AD domains which are not case-sensitive. To make it easier for Windows user we make sub-domains case-insensitive as well which allows to write the username in any case at the login prompt. If support for other types of sub-domains is added it might be necessary to set the case-sensitive flag based on the domain type. --- src/util/domain_info_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/domain_info_utils.c') diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c index 6eed835a9..6ee354552 100644 --- a/src/util/domain_info_utils.c +++ b/src/util/domain_info_utils.c @@ -79,7 +79,7 @@ struct sss_domain_info *new_subdomain(TALLOC_CTX *mem_ctx, dom->id_max = 0xffffffff; dom->pwd_expiration_warning = parent->pwd_expiration_warning; dom->cache_credentials = parent->cache_credentials; - dom->case_sensitive = parent->case_sensitive; + dom->case_sensitive = false; dom->user_timeout = parent->user_timeout; dom->group_timeout = parent->group_timeout; dom->netgroup_timeout = parent->netgroup_timeout; -- cgit