From c3fedcddd5e79c60f5fcc0219752c27277a4d9f7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 9 Oct 2008 15:38:53 +0200 Subject: Pass struct smb_request to file_new Goal is to remove the chain_fsp global variable --- source3/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 976611cc37..fd37371ed0 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4638,7 +4638,7 @@ void reply_printopen(struct smb_request *req) } /* Open for exclusive use, write only. */ - status = print_fsp_open(conn, NULL, req->vuid, &fsp); + status = print_fsp_open(req, conn, NULL, req->vuid, &fsp); if (!NT_STATUS_IS_OK(status)) { reply_nterror(req, status); -- cgit