diff options
author | Volker Lendecke <vl@samba.org> | 2009-09-06 15:18:58 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-07 01:28:32 +0200 |
commit | 04ea250aebe619d7ec25426be9d395f1dd635c90 (patch) | |
tree | 973396b5bbe39d1772d1db61e10f87097fe3d580 /source3/winbindd/winbindd.c | |
parent | 4ad330d5226901aed18656c49c70a3fc7a62826c (diff) | |
download | samba-04ea250aebe619d7ec25426be9d395f1dd635c90.tar.gz samba-04ea250aebe619d7ec25426be9d395f1dd635c90.tar.xz samba-04ea250aebe619d7ec25426be9d395f1dd635c90.zip |
s3:winbind: Convert WINBINDD_SET_HWM to the new API
Diffstat (limited to 'source3/winbindd/winbindd.c')
-rw-r--r-- | source3/winbindd/winbindd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index f0dc62ef12b..9d4676f9b59 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -438,10 +438,6 @@ static struct winbindd_dispatch_table { { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains, "LIST_TRUSTDOM" }, - /* Lookup related functions */ - - { WINBINDD_SET_HWM, winbindd_set_hwm, "SET_HWMS" }, - /* Miscellaneous */ { WINBINDD_INFO, winbindd_info, "INFO" }, @@ -549,6 +545,8 @@ static struct winbindd_async_dispatch_table async_priv_table[] = { winbindd_set_mapping_send, winbindd_set_mapping_recv }, { WINBINDD_REMOVE_MAPPING, "SET_MAPPING", winbindd_remove_mapping_send, winbindd_remove_mapping_recv }, + { WINBINDD_SET_HWM, "SET_HWM", + winbindd_set_hwm_send, winbindd_set_hwm_recv }, { 0, NULL, NULL, NULL } }; |