From 54932934421e8a34d190604122bc22d676e4c7ea Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Sat, 25 Oct 1997 15:49:27 +0000 Subject: got the SAM logon request generated, and received a SAM logon response back. YEAH! need to add: - client-side credential calculation - client-side parsing of the SAM logon response. (This used to be commit 349677de3f06bb0892862de0e11172adeffda18a) --- source3/include/smb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index b6b9d177a1..b19fbfb4ca 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -502,12 +502,12 @@ typedef struct id_info_1 uint32 param_ctrl; /* param control */ DOM_LOGON_ID logon_id; /* logon ID */ UNIHDR hdr_user_name; /* user name unicode header */ - UNIHDR hdr_workgroup_name; /* workgroup name unicode header */ + UNIHDR hdr_wksta_name; /* workgroup name unicode header */ ARC4_OWF arc4_lm_owf; /* arc4 LM OWF Password */ ARC4_OWF arc4_nt_owf; /* arc4 NT OWF Password */ UNISTR2 uni_domain_name; /* domain name unicode string */ UNISTR2 uni_user_name; /* user name unicode string */ - UNISTR2 uni_workgroup_name; /* workgroup name unicode string */ + UNISTR2 uni_wksta_name; /* workgroup name unicode string */ } DOM_ID_INFO_1; @@ -522,7 +522,7 @@ typedef struct sam_info union { - DOM_ID_INFO_1 id1; /* auth-level 1 */ + DOM_ID_INFO_1 *id1; /* auth-level 1 */ } auth; -- cgit