summaryrefslogtreecommitdiff
path: root/source3/auth/auth_netlogond.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-06-01 11:23:50 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-06-01 17:11:25 +1000
commita6e07c22a385ccf09d8e13d71c46387b2144ee44 (patch)
tree4643b7c753182ea9dc89ecee76ef859e0d8b74a4 /source3/auth/auth_netlogond.c
parentfdc6db34caf4c30fd5bf439fcd3a5453fd26a590 (diff)
downloadsamba-a6e07c22a385ccf09d8e13d71c46387b2144ee44.tar.gz
samba-a6e07c22a385ccf09d8e13d71c46387b2144ee44.tar.bz2
samba-a6e07c22a385ccf09d8e13d71c46387b2144ee44.zip
s3:auth Rename wksta_name -> workstation_name in auth_usersupplied_info
Diffstat (limited to 'source3/auth/auth_netlogond.c')
-rw-r--r--source3/auth/auth_netlogond.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/auth/auth_netlogond.c b/source3/auth/auth_netlogond.c
index 1442e2f6ee..28ef93398c 100644
--- a/source3/auth/auth_netlogond.c
+++ b/source3/auth/auth_netlogond.c
@@ -80,16 +80,16 @@ static NTSTATUS netlogond_validate(TALLOC_CTX *mem_ctx,
status = rpccli_netlogon_sam_network_logon_ex(
p, p,
- 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_domain, /* domain name */
- user_info->wksta_name, /* workstation name */
+ 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_domain, /* domain name */
+ user_info->workstation_name, /* workstation name */
(uchar *)auth_context->challenge.data, /* 8 byte challenge. */
- user_info->lm_resp, /* lanman 24 byte response */
- user_info->nt_resp, /* nt 24 byte response */
- &info3); /* info3 out */
+ user_info->lm_resp, /* lanman 24 byte response */
+ user_info->nt_resp, /* nt 24 byte response */
+ &info3); /* info3 out */
DEBUG(10, ("rpccli_netlogon_sam_network_logon_ex returned %s\n",
nt_errstr(status)));