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/notify.c | 7 ++++--- source3/printing/printing.c | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/notify.c b/source3/printing/notify.c index 4b87a1980d..c8cdc4ec78 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -448,13 +448,14 @@ void notify_job_status(struct tevent_context *ev, notify_job_status_byname(ev, msg_ctx, sharename, jobid, status, 0); } -void notify_job_total_bytes(const char *sharename, uint32 jobid, +void notify_job_total_bytes(struct tevent_context *ev, + struct messaging_context *msg_ctx, + const char *sharename, uint32 jobid, uint32 size) { /* Job id stored in id field, status in value1 */ - send_notify_field_values(server_event_context(), - server_messaging_context(), + send_notify_field_values(ev, msg_ctx, sharename, JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_TOTAL_BYTES, jobid, size, 0, 0); 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