1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

NULL enum_local_groups for ads winbindd (temporary workaround).

(This used to be commit 5a2f1edb5848dc054cfaa71b0fb3b473ad930b7d)
This commit is contained in:
Gerald Carter 2002-10-18 17:44:53 +00:00
parent 555bc82dea
commit 67b3799bf4
2 changed files with 2 additions and 1 deletions

View File

@ -675,6 +675,7 @@ struct winbindd_methods ads_methods = {
True,
query_user_list,
enum_dom_groups,
NULL,
name_to_sid,
sid_to_name,
query_user,

View File

@ -463,7 +463,7 @@ static BOOL get_sam_group_entries(struct getent_state *ent)
/* get the domain local groups if we are a member of
a native win2k domain */
if ( domain->native_mode )
if ( domain->native_mode && domain->methods->enum_local_groups )
{
DEBUG(4,("get_sam_group_entries: Native Mode 2k domain; enumerating local groups as well\n"));