diff options
author | Tim Potter <tpot@samba.org> | 2001-10-09 22:55:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-10-09 22:55:00 +0000 |
commit | 63731d4a00e7a70b48d0c25677c76ec6b2e04ce1 (patch) | |
tree | 425a6a1e2f18d64a0c4eb51a57f01122bfbd8e67 /source/nsswitch/winbindd.c | |
parent | 4d57c7520fa106ef6c29c0678584e1726ded961f (diff) | |
download | samba-63731d4a00e7a70b48d0c25677c76ec6b2e04ce1.tar.gz samba-63731d4a00e7a70b48d0c25677c76ec6b2e04ce1.tar.xz samba-63731d4a00e7a70b48d0c25677c76ec6b2e04ce1.zip |
Implemented sam group handle stuff. getent group now works.
Diffstat (limited to 'source/nsswitch/winbindd.c')
-rw-r--r-- | source/nsswitch/winbindd.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/source/nsswitch/winbindd.c b/source/nsswitch/winbindd.c index 21dda58aae1..4a01b06ea92 100644 --- a/source/nsswitch/winbindd.c +++ b/source/nsswitch/winbindd.c @@ -1,6 +1,6 @@ /* Unix SMB/Netbios implementation. - Version 2.0 + Version 3.0 Winbind daemon for ntdom nss module @@ -234,18 +234,20 @@ static struct dispatch_table dispatch_table[] = { { WINBINDD_ENDPWENT, winbindd_endpwent }, { WINBINDD_GETPWENT, winbindd_getpwent }, -#if 0 - { WINBINDD_GETGROUPS, winbindd_getgroups }, /* 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 }, @@ -254,10 +256,13 @@ 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 }, |