diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-06-01 20:27:03 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-06-07 23:34:28 +1000 |
commit | 23159453d3e61e2ad47fe6f86f3763280a11ea0c (patch) | |
tree | 05a7c39bcc9028b32c5156945e5646c377552c9a /source3/auth/auth_netlogond.c | |
parent | 0dc88d2745e89096fda0e097bcf958949d7efc2d (diff) | |
download | samba-23159453d3e61e2ad47fe6f86f3763280a11ea0c.tar.gz samba-23159453d3e61e2ad47fe6f86f3763280a11ea0c.tar.xz samba-23159453d3e61e2ad47fe6f86f3763280a11ea0c.zip |
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
Diffstat (limited to 'source3/auth/auth_netlogond.c')
-rw-r--r-- | source3/auth/auth_netlogond.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_netlogond.c b/source3/auth/auth_netlogond.c index 28ef93398c..7fea6a53fa 100644 --- a/source3/auth/auth_netlogond.c +++ b/source3/auth/auth_netlogond.c @@ -83,7 +83,7 @@ static NTSTATUS netlogond_validate(TALLOC_CTX *mem_ctx, user_info->logon_parameters, /* flags such as 'allow * workstation logon' */ global_myname(), /* server name */ - user_info->smb_name, /* user name logging on. */ + user_info->client.account_name, /* user name logging on. */ user_info->client_domain, /* domain name */ user_info->workstation_name, /* workstation name */ (uchar *)auth_context->challenge.data, /* 8 byte challenge. */ @@ -281,7 +281,7 @@ static NTSTATUS check_netlogond_security(const struct auth_context *auth_context okay: - status = make_server_info_info3(mem_ctx, user_info->smb_name, + status = make_server_info_info3(mem_ctx, user_info->client.account_name, user_info->domain, server_info, info3); if (!NT_STATUS_IS_OK(status)) { |