summaryrefslogtreecommitdiff
path: root/source4/winbind/wb_samba3_protocol.c
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2009-01-15 10:14:55 +0100
committerKai Blin <kai@samba.org>2009-01-15 10:35:00 +0100
commita0abb933d2acd8455a0560bfdbcc21deaf025432 (patch)
tree4b3b711607baf6c436c8408e0a79020c37b2dcfd /source4/winbind/wb_samba3_protocol.c
parentec93fd6b0ccec34c109958137517d8c131033cd7 (diff)
downloadsamba-a0abb933d2acd8455a0560bfdbcc21deaf025432.tar.gz
samba-a0abb933d2acd8455a0560bfdbcc21deaf025432.tar.bz2
samba-a0abb933d2acd8455a0560bfdbcc21deaf025432.zip
s4-winbind: Add support for the WINBINDD_LIST_GROUPS command.
Diffstat (limited to 'source4/winbind/wb_samba3_protocol.c')
-rw-r--r--source4/winbind/wb_samba3_protocol.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/winbind/wb_samba3_protocol.c b/source4/winbind/wb_samba3_protocol.c
index 9a9765b564..d40e0e6bc6 100644
--- a/source4/winbind/wb_samba3_protocol.c
+++ b/source4/winbind/wb_samba3_protocol.c
@@ -117,6 +117,9 @@ NTSTATUS wbsrv_samba3_handle_call(struct wbsrv_samba3_call *s3call)
case WINBINDD_GETUSERSIDS:
return wbsrv_samba3_usersids(s3call);
+ case WINBINDD_LIST_GROUPS:
+ return wbsrv_samba3_list_groups(s3call);
+
case WINBINDD_LIST_TRUSTDOM:
return wbsrv_samba3_list_trustdom(s3call);
@@ -172,12 +175,11 @@ NTSTATUS wbsrv_samba3_handle_call(struct wbsrv_samba3_call *s3call)
case WINBINDD_DUAL_GID2SID:
return wbsrv_samba3_gid2sid(s3call);
- /* Unimplemented commands */
+ /* Unimplemented commands */
case WINBINDD_PAM_CHAUTHTOK:
case WINBINDD_PAM_LOGOFF:
case WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP:
- case WINBINDD_LIST_GROUPS:
case WINBINDD_LOOKUPRIDS:
case WINBINDD_SIDS_TO_XIDS:
case WINBINDD_ALLOCATE_UID: