From 23159453d3e61e2ad47fe6f86f3763280a11ea0c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 1 Jun 2010 20:27:03 +1000 Subject: s3:auth Rename user_info->smb_name -> user_info->client.account_name This is closer to the structure I want for a common struct auth_usersupplied_info. Andrew Bartlett --- source3/auth/auth_winbind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth/auth_winbind.c') diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index d534e59cfc..49ae3a9364 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -59,7 +59,7 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context, /* Send off request */ - params.account_name = user_info->smb_name; + params.account_name = user_info->client.account_name; params.domain_name = user_info->domain; params.workstation_name = user_info->workstation_name; @@ -114,7 +114,7 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context, } nt_status = make_server_info_wbcAuthUserInfo(mem_ctx, - user_info->smb_name, + user_info->client.account_name, user_info->domain, info, server_info); wbcFreeMemory(info); -- cgit