summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 13:33:56 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:21 -0400
commitfb7150f23b154fe53a91f3433ea33cf680d4fa93 (patch)
tree5045b6da6e9268e4e4ae96f72c00962dbb3421a8 /source3/winbindd/winbindd.c
parentea286fed7adf93311b0ca14c3ff1e7bac74a0b9b (diff)
downloadsamba-fb7150f23b154fe53a91f3433ea33cf680d4fa93.tar.gz
samba-fb7150f23b154fe53a91f3433ea33cf680d4fa93.tar.bz2
samba-fb7150f23b154fe53a91f3433ea33cf680d4fa93.zip
s3:winbind: Convert WINBINDD_SID_TO_UID 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 a5374a99f4..1d91a608c4 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_UID, winbindd_sid_to_uid, "SID_TO_UID" },
{ 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" },
@@ -527,6 +526,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_lookupsid_send, winbindd_lookupsid_recv },
{ WINBINDD_LOOKUPNAME, "LOOKUPNAME",
winbindd_lookupname_send, winbindd_lookupname_recv },
+ { WINBINDD_SID_TO_UID, "SID_TO_UID",
+ winbindd_sid_to_uid_send, winbindd_sid_to_uid_recv },
{ 0, NULL, NULL, NULL }
};