summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-04 15:37:54 -0400
committerVolker Lendecke <vl@samba.org>2009-08-05 03:21:23 -0400
commit5bbb7a0d143b34b6a2a2c4adb1114120cddd74bf (patch)
tree629ea9d08ece95c0cf096ba14f6bb523e9f44d9b /source3/winbindd/winbindd.c
parent9dc401a20ec608d4d8ae25fb4e81c462e9ced415 (diff)
downloadsamba-5bbb7a0d143b34b6a2a2c4adb1114120cddd74bf.tar.gz
samba-5bbb7a0d143b34b6a2a2c4adb1114120cddd74bf.tar.bz2
samba-5bbb7a0d143b34b6a2a2c4adb1114120cddd74bf.zip
s3:winbind: Convert WINBINDD_GETPWNAM 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 77e073c7c3..3b8358be0c 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -427,7 +427,6 @@ static struct winbindd_dispatch_table {
/* User functions */
- { WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
{ WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
{ WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
@@ -532,6 +531,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
winbindd_gid_to_sid_send, winbindd_gid_to_sid_recv },
{ WINBINDD_GETPWSID, "GETPWSID",
winbindd_getpwsid_send, winbindd_getpwsid_recv },
+ { WINBINDD_GETPWNAM, "GETPWNAM",
+ winbindd_getpwnam_send, winbindd_getpwnam_recv },
{ 0, NULL, NULL, NULL }
};