1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r23146: fix the build (temporary)

abartlet: please fix this correct!

metze
This commit is contained in:
Stefan Metzmacher 2007-05-25 13:30:49 +00:00 committed by Gerald (Jerry) Carter
parent 7a513bd741
commit a4df092c80

View File

@ -55,6 +55,12 @@ struct composite_context *wb_trusted_dom_info_send(TALLOC_CTX *mem_ctx,
result = composite_create(mem_ctx, service->task->event_ctx); result = composite_create(mem_ctx, service->task->event_ctx);
if (result == NULL) goto failed; if (result == NULL) goto failed;
composite_error(result, NT_STATUS_FOOBAR);
return result;
failed:
return NULL;
}
#if 0
state = talloc(result, struct trusted_dom_info_state); state = talloc(result, struct trusted_dom_info_state);
if (state == NULL) goto failed; if (state == NULL) goto failed;
state->ctx = result; state->ctx = result;
@ -207,6 +213,7 @@ static void trusted_dom_info_recv_dcaddr(struct composite_context *ctx)
composite_done(state->ctx); composite_done(state->ctx);
} }
#endif
NTSTATUS wb_trusted_dom_info_recv(struct composite_context *ctx, NTSTATUS wb_trusted_dom_info_recv(struct composite_context *ctx,
TALLOC_CTX *mem_ctx, TALLOC_CTX *mem_ctx,