diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-04 14:22:17 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:22 -0400 |
commit | 10685b37d4dc16dc75c48c08937f003af4968a0c (patch) | |
tree | 34b0f916a0a6d88423f61f21963c6c50fb04b766 /source3/winbindd/winbindd.c | |
parent | 292f3f896fa5bc381c88526fc73a6224b8d286f0 (diff) | |
download | samba-10685b37d4dc16dc75c48c08937f003af4968a0c.tar.gz samba-10685b37d4dc16dc75c48c08937f003af4968a0c.tar.xz samba-10685b37d4dc16dc75c48c08937f003af4968a0c.zip |
s3:winbind: Convert WINBINDD_GID_TO_SID the new API
Diffstat (limited to 'source3/winbindd/winbindd.c')
-rw-r--r-- | source3/winbindd/winbindd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index 9af63ff32ee..4425517385f 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -473,7 +473,6 @@ static struct winbindd_dispatch_table { /* Lookup related functions */ - { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" }, { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" }, { WINBINDD_ALLOCATE_GID, winbindd_allocate_gid, "ALLOCATE_GID" }, { WINBINDD_SET_MAPPING, winbindd_set_mapping, "SET_MAPPING" }, @@ -530,6 +529,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = { winbindd_sid_to_gid_send, winbindd_sid_to_gid_recv }, { WINBINDD_UID_TO_SID, "UID_TO_SID", 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 }, { 0, NULL, NULL, NULL } }; |