From d033e533001ba255293e5fac639390d507ce3f3a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 11 Dec 2001 01:04:13 +0000 Subject: removed the start_ndx parameter from group enumeration I tried testing this by lowering the buffer size in cli_samr_enum_dom_groups() but that didn't work - I think this needs more looking into (This used to be commit 34328e30315e4b42087d0ee11ed0c3fb715bc250) --- source3/nsswitch/winbindd_ads.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source3/nsswitch/winbindd_ads.c') diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c index 13a0934ab4..afdf6d1ff0 100644 --- a/source3/nsswitch/winbindd_ads.c +++ b/source3/nsswitch/winbindd_ads.c @@ -236,7 +236,7 @@ done: /* list all domain groups */ static NTSTATUS enum_dom_groups(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx, - uint32 *start_ndx, uint32 *num_entries, + uint32 *num_entries, struct acct_info **info) { ADS_STRUCT *ads = NULL; @@ -251,12 +251,6 @@ static NTSTATUS enum_dom_groups(struct winbindd_domain *domain, DEBUG(3,("ads: enum_dom_groups\n")); - if ((*start_ndx) != 0) { - DEBUG(1,("ads backend start_ndx not implemented\n")); - status = NT_STATUS_NOT_IMPLEMENTED; - goto done; - } - ads = ads_cached_connection(domain); if (!ads) goto done; -- cgit