Lines Matching refs:sp_pwdp
103 free (pwd->sp_pwdp); in give_spwd_free()
117 if (pwd->sp_pwdp != NULL) in spwd_need_buflen()
118 len += strlen (pwd->sp_pwdp) + 1; in spwd_need_buflen()
127 if (src->sp_pwdp != NULL && strlen (src->sp_pwdp)) in copy_spwd_changes()
130 dest->sp_pwdp = strdup (src->sp_pwdp); in copy_spwd_changes()
131 else if (dest->sp_pwdp in copy_spwd_changes()
132 && strlen (dest->sp_pwdp) >= strlen (src->sp_pwdp)) in copy_spwd_changes()
133 strcpy (dest->sp_pwdp, src->sp_pwdp); in copy_spwd_changes()
136 dest->sp_pwdp = buffer; in copy_spwd_changes()
137 strcpy (dest->sp_pwdp, src->sp_pwdp); in copy_spwd_changes()
138 buffer += strlen (dest->sp_pwdp) + 1; in copy_spwd_changes()
139 buflen = buflen - (strlen (dest->sp_pwdp) + 1); in copy_spwd_changes()