1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

Attempt to fix the build

Simo, with which compiler did you build this? I'd be curious to learn about the
compiler settings that make this build.

Thanks,

Volker
This commit is contained in:
Volker Lendecke 2009-03-02 20:10:13 +01:00
parent 67d41d0fc7
commit 9cacb49eb6

View File

@ -212,7 +212,7 @@ struct async_req *wb_req_write_send(TALLOC_CTX *mem_ctx,
if (subreq == NULL) {
goto fail;
}
tevent_req_set_callback(wb_req_write_done, result);
tevent_req_set_callback(subreq, wb_req_write_done, result);
return result;
fail:
@ -375,7 +375,7 @@ struct async_req *wb_resp_write_send(TALLOC_CTX *mem_ctx,
static void wb_resp_write_done(struct tevent_req *subreq)
{
struct async_req *req =
tevent_re_callback_data(subreq, struct async_req);
tevent_req_callback_data(subreq, struct async_req);
int err;
ssize_t ret;