From bd6626c40ce9806a6f5bc8aee4fe969028bda928 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 8 Aug 2010 16:26:40 +0200 Subject: s3: Lift the server_messaging_context from notify_job_total_bytes --- source3/printing/printing.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/printing/printing.c') diff --git a/source3/printing/printing.c b/source3/printing/printing.c index a305e86bea..b35c868469 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -596,7 +596,9 @@ static void pjob_store_notify(const char* sharename, uint32 jobid, struct printj map_to_spoolss_status(new_data->status)); if (new_job || old_data->size != new_data->size) - notify_job_total_bytes(sharename, jobid, new_data->size); + notify_job_total_bytes(server_event_context(), + server_messaging_context(), + sharename, jobid, new_data->size); if (new_job || old_data->page_count != new_data->page_count) notify_job_total_pages(sharename, jobid, new_data->page_count); -- cgit