summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 15:41:40 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:23 -0400
commitbd9d7f75e352985f1b0e0785f0ba94dea19d2601 (patch)
tree2b5d21e52111494addbc5fcb6fac98fcb243b23e /source3/winbindd/winbindd.c
parent5bbb7a0d143b34b6a2a2c4adb1114120cddd74bf (diff)
downloadsamba-bd9d7f75e352985f1b0e0785f0ba94dea19d2601.tar.gz
samba-bd9d7f75e352985f1b0e0785f0ba94dea19d2601.tar.bz2
samba-bd9d7f75e352985f1b0e0785f0ba94dea19d2601.zip
s3:winbind: Convert WINBINDD_GETPWUID to the new API
Diffstat (limited to 'source3/winbindd/winbindd.c')
-rw-r--r--source3/winbindd/winbindd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c
index 3b8358be0c..0e13516a71 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -427,8 +427,6 @@ static struct winbindd_dispatch_table {
/* User functions */
- { WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
-
{ WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
{ WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
{ WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
@@ -533,6 +531,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_getpwsid_send, winbindd_getpwsid_recv },
{ WINBINDD_GETPWNAM, "GETPWNAM",
winbindd_getpwnam_send, winbindd_getpwnam_recv },
+ { WINBINDD_GETPWUID, "GETPWUID",
+ winbindd_getpwuid_send, winbindd_getpwuid_recv },
{ 0, NULL, NULL, NULL }
};