summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-29 16:05:02 +0200
committerVolker Lendecke <vl@samba.org>2009-08-29 19:53:29 +0200
commit6b474c56a5a1cfaf11dec1c35c7510ba06f175b1 (patch)
treebef3892970be9224297c6e56588f0e34376b5175 /source3/winbindd/winbindd.c
parenta95955f285ea13a3feddafa75edf8d2031d39403 (diff)
downloadsamba-6b474c56a5a1cfaf11dec1c35c7510ba06f175b1.tar.gz
samba-6b474c56a5a1cfaf11dec1c35c7510ba06f175b1.tar.bz2
samba-6b474c56a5a1cfaf11dec1c35c7510ba06f175b1.zip
s3:winbind: Convert WINBINDD_LIST_USERS 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 5dac9322f6..1d3762f5b9 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -435,7 +435,6 @@ static struct winbindd_dispatch_table {
/* Enumeration functions */
- { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
{ WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
{ WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
"LIST_TRUSTDOM" },
@@ -537,6 +536,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_getgrent_send, winbindd_getgrent_recv },
{ WINBINDD_ENDGRENT, "ENDGRENT",
winbindd_endgrent_send, winbindd_endgrent_recv },
+ { WINBINDD_LIST_USERS, "LIST_USERS",
+ winbindd_list_users_send, winbindd_list_users_recv },
{ 0, NULL, NULL, NULL }
};