From d5cc067367ec58a011c69570d3fe6bf778c565e2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 27 Apr 2010 15:20:25 +0200 Subject: s3:smbd: make fsp->fake_file_handle a talloc child of fsp metze --- source3/smbd/pipes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/smbd/pipes.c b/source3/smbd/pipes.c index aff5f53495..e2c0cdc2f3 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, -- cgit