Searched refs:s_unixname (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Dnldaputils.c515 char *s_unixname = NULL; local
544 s_unixname = sanitize_for_ldap_filter(unixname);
545 if (s_unixname == NULL) {
550 len = snprintf(NULL, 0, filter, s_unixname) + 1;
553 if (s_unixname != unixname)
554 free(s_unixname);
558 (void) snprintf(q->filter, len, filter, s_unixname);
560 len = snprintf(NULL, 0, udata, s_unixname) + 1;
563 if (s_unixname != unixname)
564 free(s_unixname);
[all...]
H A Dadutils.c816 char *filter, *s_unixname; local
825 s_unixname = sanitize_for_ldap_filter(unixname);
826 if (s_unixname == NULL)
831 is_wuser ? "user" : "group", attrname, s_unixname);
832 if (s_unixname != unixname)
833 free(s_unixname);
H A Ddbutils.c603 char *s_unixname = NULL; local
636 s_unixname = sqlite_mprintf(
639 if (s_unixname == NULL) {
665 s_unixname ? s_unixname : "",
679 if (s_unixname != NULL)
680 sqlite_freemem(s_unixname);

Completed in 54 milliseconds