Displaying 1 result from an estimated 1 matches for "winbindd_pw".
Did you mean:
  winbindd_pr
  
2003 Sep 27
0
Samba 3(PDC) + winbind, anyone has it working ?
...ication part, the nss part
fails because libnss_winbind invokes
winbindd_getpwnam("EXAMPLE\root"). The reason is shown
below. In winbnd_user.c, the relavent function is
listed below :
enum winbindd_result winbindd_getpwnam(struct
winbindd_cli_state *state)
{
	WINBIND_USERINFO user_info;
	WINBINDD_PW *pw;
	DOM_SID user_sid;
	NTSTATUS status;
	fstring name_domain, name_user;
	enum SID_NAME_USE name_type;
	struct winbindd_domain *domain;
	TALLOC_CTX *mem_ctx;
	/* Ensure null termination */
state->request.data.username[sizeof(state->request.data.username)-1]='\0';
	DEBUG(3, ("...