diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 16:29:31 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 18:09:35 +0200 |
commit | 06cf2ae6ea3c8ef5e092dc3b465461746f3d466b (patch) | |
tree | f361653c352cc14ff6547f03647735256440711b | |
parent | 7a9f94dae87061b15245314cbe6d079f62f1db98 (diff) | |
download | samba-06cf2ae6ea3c8ef5e092dc3b465461746f3d466b.tar.gz samba-06cf2ae6ea3c8ef5e092dc3b465461746f3d466b.tar.bz2 samba-06cf2ae6ea3c8ef5e092dc3b465461746f3d466b.zip |
s3: Lift the server_messaging_context from notify_job_username
-rw-r--r-- | source3/include/proto.h | 4 | ||||
-rw-r--r-- | source3/printing/notify.c | 6 | ||||
-rw-r--r-- | source3/printing/printing.c | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index ca52984eb8..2f6e81539d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4432,7 +4432,9 @@ void notify_job_total_pages(struct tevent_context *ev, struct messaging_context *msg_ctx, const char *sharename, uint32 jobid, uint32 pages); -void notify_job_username(const char *sharename, uint32 jobid, char *name); +void notify_job_username(struct tevent_context *ev, + struct messaging_context *msg_ctx, + const char *sharename, uint32 jobid, char *name); void notify_job_name(const char *sharename, uint32 jobid, char *name); void notify_job_submitted(const char *sharename, uint32 jobid, time_t submitted); diff --git a/source3/printing/notify.c b/source3/printing/notify.c index 17dceaec3a..de073f42ec 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -474,10 +474,12 @@ void notify_job_total_pages(struct tevent_context *ev, pages, 0, 0); } -void notify_job_username(const char *sharename, uint32 jobid, char *name) +void notify_job_username(struct tevent_context *ev, + struct messaging_context *msg_ctx, + const char *sharename, uint32 jobid, char *name) { send_notify_field_buffer( - server_event_context(), server_messaging_context(), + ev, msg_ctx, sharename, JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_USER_NAME, jobid, strlen(name) + 1, name); } diff --git a/source3/printing/printing.c b/source3/printing/printing.c index d84fc7699b..fe42f55d1e 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -577,7 +577,9 @@ static void pjob_store_notify(const char* sharename, uint32 jobid, struct printj if (new_job) { notify_job_submitted(sharename, jobid, new_data->starttime); - notify_job_username(sharename, jobid, new_data->user); + notify_job_username(server_event_context(), + server_messaging_context(), + sharename, jobid, new_data->user); } if (new_job || !strequal(old_data->jobname, new_data->jobname)) |