diff options
author | Sumit Bose <sbose@redhat.com> | 2013-12-13 11:44:59 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-12-19 10:24:16 +0100 |
commit | 15a1519ec9c23f598716ffa89e533cd9bfb2a4f3 (patch) | |
tree | 8dda85aa957c9b29cd7db696c6caae7fb8ac64ae /src/util/util.h | |
parent | c9124effceb40890bc9dd157155618067a7b8d2f (diff) | |
download | sssd-15a1519ec9c23f598716ffa89e533cd9bfb2a4f3.tar.gz sssd-15a1519ec9c23f598716ffa89e533cd9bfb2a4f3.tar.xz sssd-15a1519ec9c23f598716ffa89e533cd9bfb2a4f3.zip |
Use lower-case name for case-insensitive searches
The patch makes sure that a completely lower-cased version of a fully
qualified name is used for case insensitive searches. Currently there
are code paths where the domain name was used as configured and was not
lower-cased.
To make sure this patch does not break with old entries in the cache or
case sensitive domains a third template was added to the related filters
templates which is either filled with a completely lower-cased version or
with the old version. The other two template values are unchanged.
Diffstat (limited to 'src/util/util.h')
-rw-r--r-- | src/util/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/util.h b/src/util/util.h index c2499555b..101270571 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -511,6 +511,12 @@ errno_t sss_filter_sanitize(TALLOC_CTX *mem_ctx, const char *input, char **sanitized); +errno_t sss_filter_sanitize_for_dom(TALLOC_CTX *mem_ctx, + const char *input, + struct sss_domain_info *dom, + char **sanitized, + char **lc_sanitized); + char * sss_escape_ip_address(TALLOC_CTX *mem_ctx, int family, const char *addr); |