summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-16 12:13:00 +0200
committerVolker Lendecke <vl@samba.org>2009-08-16 12:39:07 +0200
commita511a875197778e9f032f442d8cd6a48b4e47f69 (patch)
tree123c3596752f62f2078bd90b6d37d911f0e3f687 /source3/winbindd/winbindd.c
parent3f3f49d5e23b92051508b2555688417865f668b0 (diff)
downloadsamba-a511a875197778e9f032f442d8cd6a48b4e47f69.tar.gz
samba-a511a875197778e9f032f442d8cd6a48b4e47f69.tar.bz2
samba-a511a875197778e9f032f442d8cd6a48b4e47f69.zip
s3:winbind: Convert WINBINDD_GETGRGID 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 3dfdb03374..bbcfede030 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -436,7 +436,6 @@ static struct winbindd_dispatch_table {
/* Group functions */
{ WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
- { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
{ WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
{ WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
{ WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
@@ -535,6 +534,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_getgroups_send, winbindd_getgroups_recv },
{ WINBINDD_SHOW_SEQUENCE, "SHOW_SEQUENCE",
winbindd_show_sequence_send, winbindd_show_sequence_recv },
+ { WINBINDD_GETGRGID, "GETGRGID",
+ winbindd_getgrgid_send, winbindd_getgrgid_recv },
{ 0, NULL, NULL, NULL }
};