summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-10-10 23:08:13 +0000
committerTim Potter <tpot@samba.org>2001-10-10 23:08:13 +0000
commit1f48b3640f971705d53e2f59aab311927b7c54a5 (patch)
tree1889da0c43b77f1b1758e8c55cca3d8581147a30 /source3/nsswitch/winbindd.c
parentde2ece0543bbd0b013310667ebdf33abe78a0ac4 (diff)
downloadsamba-1f48b3640f971705d53e2f59aab311927b7c54a5.tar.gz
samba-1f48b3640f971705d53e2f59aab311927b7c54a5.tar.bz2
samba-1f48b3640f971705d53e2f59aab311927b7c54a5.zip
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)
Diffstat (limited to 'source3/nsswitch/winbindd.c')
-rw-r--r--source3/nsswitch/winbindd.c9
1 files changed, 0 insertions, 9 deletions
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 }