summaryrefslogtreecommitdiffstats
path: root/src/util/util.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-08-05 10:12:34 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-08-14 16:04:24 +0200
commit87bea3731d9d379a9cbc57e664b5e2c00ffb5cb9 (patch)
treefee502d8909997403efdb2fd508fad639942249e /src/util/util.h
parent8a123db68d397f8e38a136ae8e9c00149e156818 (diff)
downloadsssd-87bea3731d9d379a9cbc57e664b5e2c00ffb5cb9.tar.gz
sssd-87bea3731d9d379a9cbc57e664b5e2c00ffb5cb9.tar.xz
sssd-87bea3731d9d379a9cbc57e664b5e2c00ffb5cb9.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> (cherry picked from commit 1f3127e88a87953f059c9a70d3582ae1719594b1)
Diffstat (limited to 'src/util/util.h')
-rw-r--r--src/util/util.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util/util.h b/src/util/util.h
index 7b53972de..66b3e87db 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -536,11 +536,11 @@ errno_t sss_br_lock_file(int fd, size_t start, size_t len,
#endif
/* from string_utils.c */
-const char * sss_replace_whitespaces(TALLOC_CTX *mem_ctx,
- const char *orig_name,
- const char *replace_string);
-char * sss_reverse_replace_whitespaces(TALLOC_CTX *mem_ctx,
- char *orig_name,
- const char *replace_string);
+char * sss_replace_space(TALLOC_CTX *mem_ctx,
+ const char *orig_name,
+ const char replace_char);
+char * sss_reverse_replace_space(TALLOC_CTX *mem_ctx,
+ char *orig_name,
+ const char replace_char);
#endif /* __SSSD_UTIL_H__ */