diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2014-08-05 10:12:34 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-08-13 15:10:22 +0200 |
commit | 1f3127e88a87953f059c9a70d3582ae1719594b1 (patch) | |
tree | b4638413e09809da334d7dfa6ef0b75f51e2f61c /src/config/etc | |
parent | d3c6fca0f0d3b1c5d3dda3dcf3de0ae3ae4c0c38 (diff) | |
download | sssd-1f3127e88a87953f059c9a70d3582ae1719594b1.tar.gz sssd-1f3127e88a87953f059c9a70d3582ae1719594b1.tar.xz sssd-1f3127e88a87953f059c9a70d3582ae1719594b1.zip |
Only replace space with the specified substitution
https://fedorahosted.org/sssd/ticket/2397
- make sss_replace_whitespaces only replace space (' ') not any
whitespace
- make sss_replace_whitespaces only replace a single char, not the whole
string
- rename CONFDB_NSS_OVERRIDE_DEFAULT_WHITESPACE to
CONFDB_NSS_OVERRIDE_DEFAULT_SPACE
- rename the override_default_whitespace option to override_space
- rename sss_replace_whitespaces() to sss_replace_space()
- rename sss_reverse_replace_whitespaces() to sss_reverse_replace_space()
- rename nctx->override_default_wsp_str to nctx->override_space
- make the return value of sss_replace_space non-const to avoid freeing
the result without compilation warnings
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Diffstat (limited to 'src/config/etc')
-rw-r--r-- | src/config/etc/sssd.api.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index 1db9e2207..a3398c8d5 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -44,7 +44,7 @@ shell_fallback = str, None, false default_shell = str, None, false get_domains_timeout = int, None, false memcache_timeout = int, None, false -override_default_whitespace = str, None, false +override_space = str, None, false [pam] # Authentication service |