Home
last modified time | relevance | path

Searched refs:shell_v (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dgetpwnam.c78 char **gecos_v, **homedir_v, **shell_v; in _nss_ldap_passwd2str() local
134 shell_v = __ns_ldap_getAttr(entry, _PWD_LOGINSHELL); in _nss_ldap_passwd2str()
135 if (shell_v == NULL || shell_v[0] == NULL || *shell_v[0] == '\0') in _nss_ldap_passwd2str()
136 shell_v = &NULL_STR; in _nss_ldap_passwd2str()
138 str_len += strlen(shell_v[0]); in _nss_ldap_passwd2str()
156 gecos_v[0], homedir_v[0], shell_v[0]); in _nss_ldap_passwd2str()
161 gecos_v[0], homedir_v[0], shell_v[0]); in _nss_ldap_passwd2str()
/illumos-gate/usr/src/lib/nsswitch/ad/common/
H A Dgetpwnam.c184 char **gecos_v, **shell_v; in _nss_ad_passwd2str() local
266 shell_v = adutils_getattr(entry, _PWD_LOGINSHELL); in _nss_ad_passwd2str()
267 if (shell_v == NULL || shell_v[0] == NULL || *shell_v[0] == '\0') in _nss_ad_passwd2str()
268 shell_v = &NULL_STR; in _nss_ad_passwd2str()
271 gecos_v[0], homedir, shell_v[0]) < 0) in _nss_ad_passwd2str()