diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-27 17:11:24 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-29 19:42:26 +0200 |
commit | 50d9fb42fc771e07326f3f47103676f2ef88107e (patch) | |
tree | 67239f96f1154386cf5ca874bdec731fa48ac58b /source3/winbindd/winbindd.c | |
parent | 425239caeeb22cb0a221a38b70f2f2dc8b64bdcc (diff) | |
download | samba-50d9fb42fc771e07326f3f47103676f2ef88107e.tar.gz samba-50d9fb42fc771e07326f3f47103676f2ef88107e.tar.xz samba-50d9fb42fc771e07326f3f47103676f2ef88107e.zip |
w3:winbind: Convert WINBINDD_LOOKUPRIDS to the new API
Diffstat (limited to 'source3/winbindd/winbindd.c')
-rw-r--r-- | source3/winbindd/winbindd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index a57412ab148..10538d3f21b 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -447,10 +447,6 @@ static struct winbindd_dispatch_table { { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains, "LIST_TRUSTDOM" }, - /* SID related functions */ - - { WINBINDD_LOOKUPRIDS, winbindd_lookuprids, "LOOKUPRIDS" }, - /* Lookup related functions */ { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" }, @@ -530,6 +526,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = { winbindd_getgrnam_send, winbindd_getgrnam_recv }, { WINBINDD_GETUSERSIDS, "GETUSERSIDS", winbindd_getusersids_send, winbindd_getusersids_recv }, + { WINBINDD_LOOKUPRIDS, "LOOKUPRIDS", + winbindd_lookuprids_send, winbindd_lookuprids_recv }, { WINBINDD_SETPWENT, "SETPWENT", winbindd_setpwent_send, winbindd_setpwent_recv }, { WINBINDD_GETPWENT, "GETPWENT", |