summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 13:42:22 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:21 -0400
commit5db561a608a11895d8a9a038a98a9fcc7c867d59 (patch)
treed60f7c028a4e669994b71ca9fd1c435d45504cae /source3/winbindd/winbindd.c
parent153ae58d7d37daffc7c5547ef9174baf64f9aaa7 (diff)
downloadsamba-5db561a608a11895d8a9a038a98a9fcc7c867d59.tar.gz
samba-5db561a608a11895d8a9a038a98a9fcc7c867d59.tar.bz2
samba-5db561a608a11895d8a9a038a98a9fcc7c867d59.zip
s3:winbind: Convert WINBINDD_SID_TO_GID 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 1d91a608c4..0f320850d2 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -473,7 +473,6 @@ static struct winbindd_dispatch_table {
/* Lookup related functions */
- { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" },
{ WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" },
{ WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" },
{ WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" },
@@ -528,6 +527,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_lookupname_send, winbindd_lookupname_recv },
{ WINBINDD_SID_TO_UID, "SID_TO_UID",
winbindd_sid_to_uid_send, winbindd_sid_to_uid_recv },
+ { WINBINDD_SID_TO_GID, "SID_TO_GID",
+ winbindd_sid_to_gid_send, winbindd_sid_to_gid_recv },
{ 0, NULL, NULL, NULL }
};