From 8870daeb8d93e45320eb5bcfa58544d520dc7c69 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 21 Oct 2011 16:10:43 -0400 Subject: idl: Improve MS-PAC IDL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change some misleading variable names to reflect the actual function. Add missing field name/types previously marked as unkown. Signed-off-by: Günther Deschner Autobuild-User: Günther Deschner Autobuild-Date: Mon Oct 24 19:19:28 CEST 2011 on sn-devel-104 --- source4/winbind/wb_pam_auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/winbind/wb_pam_auth.c') diff --git a/source4/winbind/wb_pam_auth.c b/source4/winbind/wb_pam_auth.c index e09addac73..bcbc6286b5 100644 --- a/source4/winbind/wb_pam_auth.c +++ b/source4/winbind/wb_pam_auth.c @@ -170,9 +170,9 @@ static void pam_auth_crap_recv_logon(struct composite_context *ctx) state->user_name = base->account_name.string; talloc_steal(state, base->account_name.string); } - if (base->domain.string) { - state->domain_name = base->domain.string; - talloc_steal(state, base->domain.string); + if (base->logon_domain.string) { + state->domain_name = base->logon_domain.string; + talloc_steal(state, base->logon_domain.string); } state->unix_username = talloc_asprintf(state, "%s%s%s", -- cgit