From 849cc65654d20e7077621ead2429a82fcac35197 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 4 May 2010 04:28:48 -0400 Subject: s3-smbd: Migrated to new spoolss functions for printing. Signed-off-by: Jim McDonough --- source3/smbd/reply.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 9b2c1e04da..dc7082964f 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -25,6 +25,7 @@ */ #include "includes.h" +#include "printing.h" #include "smbd/globals.h" /**************************************************************************** @@ -5053,7 +5054,7 @@ void reply_printopen(struct smb_request *req) } /* Open for exclusive use, write only. */ - status = print_fsp_open(req, conn, NULL, req->vuid, fsp); + status = print_spool_open(fsp, NULL, req->vuid); if (!NT_STATUS_IS_OK(status)) { file_free(req, fsp); -- cgit