From 1f48b3640f971705d53e2f59aab311927b7c54a5 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 10 Oct 2001 23:08:13 +0000 Subject: Got the rest of the group functions working. Did some reformatting (man what was I thinking with those 4 character tabs?) We now pass our winbindd test suite again! Still to do: - talloc_ctx on a per winbindd request basis not per connection - clean up old crap we don't use any more - test against multiple BDCs (I know this isn't going to work - group/user handles have to be made against the same DC the domain and basic handles are. - implement network and dc failure recovery (This used to be commit dc4ca0e0bd779b9157ea3b2a8f17eb455abf0f26) --- source3/nsswitch/winbindd.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source3/nsswitch/winbindd.c') diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 4a01b06ea9..ffac199b6a 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -238,16 +238,12 @@ static struct dispatch_table dispatch_table[] = { /* Group functions */ -#if 0 { WINBINDD_GETGRNAM_FROM_GROUP, winbindd_getgrnam_from_group }, { WINBINDD_GETGRNAM_FROM_GID, winbindd_getgrnam_from_gid }, -#endif { WINBINDD_SETGRENT, winbindd_setgrent }, { WINBINDD_ENDGRENT, winbindd_endgrent }, { WINBINDD_GETGRENT, winbindd_getgrent }, -#if 0 - /* PAM auth functions */ { WINBINDD_PAM_AUTH, winbindd_pam_auth }, @@ -256,13 +252,10 @@ static struct dispatch_table dispatch_table[] = { /* Enumeration functions */ -#endif - { WINBINDD_LIST_USERS, winbindd_list_users }, { WINBINDD_LIST_GROUPS, winbindd_list_groups }, { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains }, -#if 0 /* SID related functions */ { WINBINDD_LOOKUPSID, winbindd_lookupsid }, @@ -279,8 +272,6 @@ static struct dispatch_table dispatch_table[] = { { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct }, -#endif - /* End of list */ { WINBINDD_NUM_CMDS, NULL } -- cgit