The branch, master has been updated
via d5cc067... s3:smbd: make fsp->fake_file_handle a talloc child of fsp
from 4783f84... s3:smbd: add comment about returning
STATUS_BUFFER_OVERFLOW in pipe_read_andx_done()
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit d5cc067367ec58a011c69570d3fe6bf778c565e2
Author: Stefan Metzmacher <[email protected]>
Date: Tue Apr 27 15:20:25 2010 +0200
s3:smbd: make fsp->fake_file_handle a talloc child of fsp
metze
-----------------------------------------------------------------------
Summary of changes:
source3/smbd/pipes.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/smbd/pipes.c b/source3/smbd/pipes.c
index aff5f53..e2c0cdc 100644
--- a/source3/smbd/pipes.c
+++ b/source3/smbd/pipes.c
@@ -65,7 +65,7 @@ NTSTATUS open_np_file(struct smb_request *smb_req, const char
*name,
return status;
}
- status = np_open(NULL, name, conn->client_address,
+ status = np_open(fsp, name, conn->client_address,
conn->server_info, &fsp->fake_file_handle);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(10, ("np_open(%s) returned %s\n", name,
--
Samba Shared Repository