1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3:winbindd: add binding_handle to struct winbindd_child

metze
This commit is contained in:
Stefan Metzmacher 2010-08-12 15:12:11 +02:00
parent e79c8098d6
commit 2ccaa23558
2 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,7 @@ struct winbindd_child {
int sock;
struct tevent_queue *queue;
struct rpc_pipe_client *rpccli;
struct dcerpc_binding_handle *binding_handle;
struct timed_event *lockout_policy_event;
struct timed_event *machine_password_change_event;

View File

@ -442,6 +442,7 @@ void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
SMB_ASSERT(child->queue != NULL);
child->rpccli = wbint_rpccli_create(NULL, domain, child);
SMB_ASSERT(child->rpccli != NULL);
child->binding_handle = child->rpccli->binding_handle;
}
static struct winbindd_child *winbindd_children = NULL;