1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

removed check on name of domain having to be right, etc etc.

(This used to be commit a74b6dcc76794c1fe350d6906f156fdf5189e18b)
This commit is contained in:
Luke Leighton 1998-12-02 16:27:38 +00:00
parent 6c94b455a0
commit 7c55f66f4c

View File

@ -259,14 +259,6 @@ BOOL get_domain_sids(DOM_SID *sid3, DOM_SID *sid5, char *servers)
sid_to_string(sid, sid5);
DEBUG(2,("Domain Controller - Domain: %s SID: %s\n", dom5, sid));
}
if (!strequal(dom3, global_myworkgroup) ||
!strequal(dom5, global_myworkgroup))
{
DEBUG(0,("get_member_domain_sid: %s is a DC for %s not %s\n",
cli.desthost, dom5, global_myworkgroup));
res = False;
}
}
else
{