summaryrefslogtreecommitdiff
path: root/source3/printing/notify.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-08-08 16:26:40 +0200
committerVolker Lendecke <vl@samba.org>2010-08-08 18:09:35 +0200
commitbd6626c40ce9806a6f5bc8aee4fe969028bda928 (patch)
treed6969fbac3ae26fa3ebc5ab35f9f920247ff4583 /source3/printing/notify.c
parentedbed43119212c3642951516a1e6c065bd9db756 (diff)
downloadsamba-bd6626c40ce9806a6f5bc8aee4fe969028bda928.tar.gz
samba-bd6626c40ce9806a6f5bc8aee4fe969028bda928.tar.bz2
samba-bd6626c40ce9806a6f5bc8aee4fe969028bda928.zip
s3: Lift the server_messaging_context from notify_job_total_bytes
Diffstat (limited to 'source3/printing/notify.c')
-rw-r--r--source3/printing/notify.c7
1 files changed, 4 insertions, 3 deletions
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);