From 24a069eac302069559c6347b24276e7f1a04cc91 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Sat, 20 Nov 1999 20:54:29 +0000 Subject: modified domain_client_validate to take trust account name / type. this is to pass DOMAIN_NAME$ and SEC_CHAN_DOMAIN instead of WKSTA_NAME$ and SEC_CHAN_WKSTA. modified check_domain_security to determine if domain name is own domain, and to use wksta trust account if so, otherwise check "trusting domains" parameter and use inter-domain trust account if so, otherwise return False. (This used to be commit 97ec74e1fa99d773812d2df402251fafb76b181c) --- source3/lib/sids.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/lib/sids.c') diff --git a/source3/lib/sids.c b/source3/lib/sids.c index 052c05cb01..c18734c705 100644 --- a/source3/lib/sids.c +++ b/source3/lib/sids.c @@ -139,7 +139,8 @@ BOOL get_member_domain_sid(void) } } - return get_domain_sids(NULL, &global_member_sid, lp_passwordserver()); + return get_domain_sids(global_myname, NULL, + &global_member_sid, lp_passwordserver()); } -- cgit