From 87d9cd202aecc42add886159bd7ec9bdf889b0c3 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 31 Oct 2005 06:08:11 +0000 Subject: r11414: Add passing around of logon_parameters to Samba4 auth_winbind Andrew Bartlett (This used to be commit 7e3c22f57be215b483ae15de4f754ed4188b5379) --- source4/auth/auth_winbind.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/auth/auth_winbind.c') diff --git a/source4/auth/auth_winbind.c b/source4/auth/auth_winbind.c index 263aef8cc9..bda9602926 100644 --- a/source4/auth/auth_winbind.c +++ b/source4/auth/auth_winbind.c @@ -71,6 +71,9 @@ static NTSTATUS winbind_check_password(struct auth_method_context *ctx, ZERO_STRUCT(request); ZERO_STRUCT(response); request.flags = WBFLAG_PAM_INFO3_NDR; + + request.data.auth_crap.logon_parameters = user_info->logon_parameters; + winbind_strcpy(request.data.auth_crap.user, user_info->client.account_name); winbind_strcpy(request.data.auth_crap.domain, -- cgit