From fc956cfcbb53103ed46a3729364e88536d569dc9 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 1 Jun 2010 21:11:14 +1000 Subject: s3:auth Rename user_info->domain -> user_info->mapped.domain_name This is closer to the structure I want for a common struct auth_usersupplied_info. Andrew Bartlett --- source3/auth/auth_wbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth/auth_wbc.c') diff --git a/source3/auth/auth_wbc.c b/source3/auth/auth_wbc.c index 4242193af0..05097ee39f 100644 --- a/source3/auth/auth_wbc.c +++ b/source3/auth/auth_wbc.c @@ -64,7 +64,7 @@ static NTSTATUS check_wbc_security(const struct auth_context *auth_context, DEBUG(10, ("Check auth for: [%s]", user_info->mapped.account_name)); params.account_name = user_info->client.account_name; - params.domain_name = user_info->domain; + params.domain_name = user_info->mapped.domain_name; params.workstation_name = user_info->workstation_name; params.flags = 0; @@ -121,7 +121,7 @@ static NTSTATUS check_wbc_security(const struct auth_context *auth_context, nt_status = make_server_info_wbcAuthUserInfo(mem_ctx, user_info->client.account_name, - user_info->domain, + user_info->mapped.domain_name, info, server_info); wbcFreeMemory(info); if (!NT_STATUS_IS_OK(nt_status)) { -- cgit