diff options
author | Volker Lendecke <vl@samba.org> | 2011-06-05 11:30:43 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-06-05 12:10:15 +0200 |
commit | 5a6368f1e2a4348fdcdc062b2546eb45bf943aed (patch) | |
tree | 46c5ec9e08e8bc246eb92537879fb7be240fbbcb /source3/winbindd/winbindd.c | |
parent | 2ce68d93f3eb38e6122dddc8bcd30795c48d07b7 (diff) | |
download | samba-5a6368f1e2a4348fdcdc062b2546eb45bf943aed.tar.gz samba-5a6368f1e2a4348fdcdc062b2546eb45bf943aed.tar.xz samba-5a6368f1e2a4348fdcdc062b2546eb45bf943aed.zip |
s3:winbind: Convert WINBINDD_WINS_BYIP to the async 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 677f766182..8c6d91e628 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -453,7 +453,6 @@ static struct winbindd_dispatch_table { /* WINS functions */ { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" }, - { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" }, /* End of list */ @@ -545,6 +544,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = { { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, "PAM_CHNG_PSWD_AUTH_CRAP", winbindd_pam_chng_pswd_auth_crap_send, winbindd_pam_chng_pswd_auth_crap_recv }, + { WINBINDD_WINS_BYIP, "PING", + winbindd_wins_byip_send, winbindd_wins_byip_recv }, { 0, NULL, NULL, NULL } }; |