summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 15:35:24 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:23 -0400
commit9dc401a20ec608d4d8ae25fb4e81c462e9ced415 (patch)
tree851df62a5cb7bcbec98c4baf33af7c6ac3e3721f /source3/winbindd/winbindd.c
parentafc82444fd367e8b8541e4a41a86966a288ed2ef (diff)
downloadsamba-9dc401a20ec608d4d8ae25fb4e81c462e9ced415.tar.gz
samba-9dc401a20ec608d4d8ae25fb4e81c462e9ced415.tar.bz2
samba-9dc401a20ec608d4d8ae25fb4e81c462e9ced415.zip
s3:winbind: Convert WINBINDD_GETPWSID 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 4425517385..77e073c7c3 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -429,7 +429,6 @@ static struct winbindd_dispatch_table {
{ WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
{ WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
- { WINBINDD_GETPWSID, winbindd_getpwsid, "GETPWSID" },
{ WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
{ WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
@@ -531,6 +530,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_uid_to_sid_send, winbindd_uid_to_sid_recv },
{ WINBINDD_GID_TO_SID, "GID_TO_SID",
winbindd_gid_to_sid_send, winbindd_gid_to_sid_recv },
+ { WINBINDD_GETPWSID, "GETPWSID",
+ winbindd_getpwsid_send, winbindd_getpwsid_recv },
{ 0, NULL, NULL, NULL }
};