summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 16:26:07 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:25 -0400
commit0a16265bc21e6f1f8cef4f38b7b45f3fd356527c (patch)
tree7482a9f0a167731f945314240e376dd35e7a134f /source3/winbindd/winbindd.c
parent01ea26bf28ab697af03c7ebc3a1261c240fe1360 (diff)
downloadsamba-0a16265bc21e6f1f8cef4f38b7b45f3fd356527c.tar.gz
samba-0a16265bc21e6f1f8cef4f38b7b45f3fd356527c.tar.bz2
samba-0a16265bc21e6f1f8cef4f38b7b45f3fd356527c.zip
s3:winbind: Convert WINBINDD_GETGROUPS to the new API
Diffstat (limited to 'source3/winbindd/winbindd.c')
-rw-r--r--source3/winbindd/winbindd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c
index 1a5e958d38..348816b39c 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -431,7 +431,6 @@ static struct winbindd_dispatch_table {
{ WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
{ WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
- { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
{ WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
/* Group functions */
@@ -533,6 +532,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_getsidaliases_send, winbindd_getsidaliases_recv },
{ WINBINDD_GETUSERDOMGROUPS, "GETUSERDOMGROUPS",
winbindd_getuserdomgroups_send, winbindd_getuserdomgroups_recv },
+ { WINBINDD_GETGROUPS, "GETGROUPS",
+ winbindd_getgroups_send, winbindd_getgroups_recv },
{ 0, NULL, NULL, NULL }
};