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_server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth/auth_server.c') diff --git a/source3/auth/auth_server.c b/source3/auth/auth_server.c index 35b7fe652c..9d31905d6b 100644 --- a/source3/auth/auth_server.c +++ b/source3/auth/auth_server.c @@ -395,14 +395,14 @@ use this machine as the password server.\n")); if (!user_info->encrypted) { /* Plaintext available */ nt_status = cli_session_setup( - cli, user_info->smb_name, + cli, user_info->client.account_name, (char *)user_info->plaintext_password.data, user_info->plaintext_password.length, NULL, 0, user_info->domain); } else { nt_status = cli_session_setup( - cli, user_info->smb_name, + cli, user_info->client.account_name, (char *)user_info->lm_resp.data, user_info->lm_resp.length, (char *)user_info->nt_resp.data, -- cgit