diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-02-05 16:39:28 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-02-05 16:39:28 +0100 |
commit | 6d139ca4680abcbda5110f2f0886aa038ff62088 (patch) | |
tree | 7d61db40fb058bcbf08ccd8e0dadc365b819371b /source4/wrepl_server/wrepl_out_helpers.c | |
parent | 4a9b3052caeb8bb144803b49dcfae82395172bc3 (diff) | |
parent | afa960cbbcd609123d710c301e7a9a070c1fed70 (diff) | |
download | samba-6d139ca4680abcbda5110f2f0886aa038ff62088.tar.gz samba-6d139ca4680abcbda5110f2f0886aa038ff62088.tar.bz2 samba-6d139ca4680abcbda5110f2f0886aa038ff62088.zip |
Merge branch 'master' of ssh://git.samba.org/data/git/samba
Conflicts:
librpc/ndr.pc.in
Diffstat (limited to 'source4/wrepl_server/wrepl_out_helpers.c')
-rw-r--r-- | source4/wrepl_server/wrepl_out_helpers.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source4/wrepl_server/wrepl_out_helpers.c b/source4/wrepl_server/wrepl_out_helpers.c index d9a9684c79..6aff134072 100644 --- a/source4/wrepl_server/wrepl_out_helpers.c +++ b/source4/wrepl_server/wrepl_out_helpers.c @@ -62,7 +62,7 @@ static NTSTATUS wreplsrv_out_connect_wait_socket(struct wreplsrv_out_connect_sta NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = wreplsrv_out_connect_handler_req; - state->req->async.private = state; + state->req->async.private_data = state; state->stage = WREPLSRV_OUT_CONNECT_STAGE_WAIT_ASSOC_CTX; @@ -131,7 +131,7 @@ static void wreplsrv_out_connect_handler_creq(struct composite_context *creq) static void wreplsrv_out_connect_handler_req(struct wrepl_request *req) { - struct wreplsrv_out_connect_state *state = talloc_get_type(req->async.private, + struct wreplsrv_out_connect_state *state = talloc_get_type(req->async.private_data, struct wreplsrv_out_connect_state); wreplsrv_out_connect_handler(state); return; @@ -276,7 +276,7 @@ static NTSTATUS wreplsrv_pull_table_wait_connection(struct wreplsrv_pull_table_s NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = wreplsrv_pull_table_handler_req; - state->req->async.private = state; + state->req->async.private_data = state; state->stage = WREPLSRV_PULL_TABLE_STAGE_WAIT_TABLE_REPLY; @@ -330,7 +330,7 @@ static void wreplsrv_pull_table_handler_creq(struct composite_context *creq) static void wreplsrv_pull_table_handler_req(struct wrepl_request *req) { - struct wreplsrv_pull_table_state *state = talloc_get_type(req->async.private, + struct wreplsrv_pull_table_state *state = talloc_get_type(req->async.private_data, struct wreplsrv_pull_table_state); wreplsrv_pull_table_handler(state); return; @@ -436,7 +436,7 @@ static NTSTATUS wreplsrv_pull_names_wait_connection(struct wreplsrv_pull_names_s NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = wreplsrv_pull_names_handler_req; - state->req->async.private = state; + state->req->async.private_data = state; state->stage = WREPLSRV_PULL_NAMES_STAGE_WAIT_SEND_REPLY; @@ -490,7 +490,7 @@ static void wreplsrv_pull_names_handler_creq(struct composite_context *creq) static void wreplsrv_pull_names_handler_req(struct wrepl_request *req) { - struct wreplsrv_pull_names_state *state = talloc_get_type(req->async.private, + struct wreplsrv_pull_names_state *state = talloc_get_type(req->async.private_data, struct wreplsrv_pull_names_state); wreplsrv_pull_names_handler(state); return; @@ -651,7 +651,7 @@ static NTSTATUS wreplsrv_pull_cycle_next_owner_wrapper(struct wreplsrv_pull_cycl NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = wreplsrv_pull_cycle_handler_req; - state->req->async.private = state; + state->req->async.private_data = state; state->stage = WREPLSRV_PULL_CYCLE_STAGE_WAIT_STOP_ASSOC; } @@ -773,7 +773,7 @@ static void wreplsrv_pull_cycle_handler_creq(struct composite_context *creq) static void wreplsrv_pull_cycle_handler_req(struct wrepl_request *req) { - struct wreplsrv_pull_cycle_state *state = talloc_get_type(req->async.private, + struct wreplsrv_pull_cycle_state *state = talloc_get_type(req->async.private_data, struct wreplsrv_pull_cycle_state); wreplsrv_pull_cycle_handler(state); return; @@ -957,7 +957,7 @@ static NTSTATUS wreplsrv_push_notify_inform(struct wreplsrv_push_notify_state *s NT_STATUS_HAVE_NO_MEMORY(state->req); state->req->async.fn = wreplsrv_push_notify_handler_req; - state->req->async.private = state; + state->req->async.private_data = state; state->stage = WREPLSRV_PUSH_NOTIFY_STAGE_WAIT_INFORM; @@ -1056,7 +1056,7 @@ static void wreplsrv_push_notify_handler_creq(struct composite_context *creq) static void wreplsrv_push_notify_handler_req(struct wrepl_request *req) { - struct wreplsrv_push_notify_state *state = talloc_get_type(req->async.private, + struct wreplsrv_push_notify_state *state = talloc_get_type(req->async.private_data, struct wreplsrv_push_notify_state); wreplsrv_push_notify_handler(state); return; |