From 6c07505b15e3822cf5fe09b0e32794b6abecbeeb Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 27 Oct 2011 22:55:17 +0200 Subject: s4:librpc/dcerpc_smb2: fix smb2_write_callback() The should use smb2_write_recv() to get the result. metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Fri Oct 28 09:55:48 CEST 2011 on sn-devel-104 --- source4/librpc/rpc/dcerpc_smb2.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'source4/librpc') diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index 75fb423df4..0de8935797 100644 --- a/source4/librpc/rpc/dcerpc_smb2.c +++ b/source4/librpc/rpc/dcerpc_smb2.c @@ -284,13 +284,17 @@ static NTSTATUS smb2_send_trans_request(struct dcecli_connection *c, DATA_BLOB * static void smb2_write_callback(struct smb2_request *req) { struct dcecli_connection *c = (struct dcecli_connection *)req->async.private_data; + struct smb2_write io; + NTSTATUS status; - if (!NT_STATUS_IS_OK(req->status)) { - DEBUG(0,("dcerpc_smb2: write callback error\n")); - pipe_dead(c, req->status); - } + ZERO_STRUCT(io); - smb2_request_destroy(req); + status = smb2_write_recv(req, &io); + if (!NT_STATUS_IS_OK(status)) { + DEBUG(0,("dcerpc_smb2: write callback error: %s\n", + nt_errstr(status))); + pipe_dead(c, status); + } } /* -- cgit