Lines Matching defs:subst
49 const char subst)
51 if (subst == '\0' || subst == ' ') {
55 if (strchr(orig_name, subst) != NULL) {
58 orig_name, subst);
62 orig_name, subst);
66 return sss_replace_char(mem_ctx, orig_name, ' ', subst);
71 const char subst)
73 if (subst == '\0' || subst == ' ') {
77 if (strchr(orig_name, subst) != NULL && strchr(orig_name, ' ') != NULL) {
80 orig_name, subst);
84 return sss_replace_char(mem_ctx, orig_name, subst, ' ');