summaryrefslogtreecommitdiff
path: root/source3/utils/smbcontrol.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-08-08 16:21:42 +0200
committerVolker Lendecke <vl@samba.org>2010-08-08 18:09:35 +0200
commit9b3a53a7a7f6b055bfa074fe6d3fcaa6d6ccc9ce (patch)
treef49aa120f6f87679b638a625dfe63c16e60d7ab7 /source3/utils/smbcontrol.c
parent21811fe72df202413ca7f65bf271d4c9fe1345c5 (diff)
downloadsamba-9b3a53a7a7f6b055bfa074fe6d3fcaa6d6ccc9ce.tar.gz
samba-9b3a53a7a7f6b055bfa074fe6d3fcaa6d6ccc9ce.tar.bz2
samba-9b3a53a7a7f6b055bfa074fe6d3fcaa6d6ccc9ce.zip
s3: Lift the server_messaging_context from notify_job_status_byname
Diffstat (limited to 'source3/utils/smbcontrol.c')
-rw-r--r--source3/utils/smbcontrol.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c
index 098e07616b..db0b91eb48 100644
--- a/source3/utils/smbcontrol.c
+++ b/source3/utils/smbcontrol.c
@@ -625,6 +625,7 @@ static bool do_printnotify(struct messaging_context *msg_ctx,
jobid = atoi(argv[3]);
notify_job_status_byname(
+ messaging_event_context(msg_ctx), msg_ctx,
argv[2], jobid, JOB_STATUS_PAUSED,
SPOOLSS_NOTIFY_MSG_UNIX_JOBID);
@@ -642,6 +643,7 @@ static bool do_printnotify(struct messaging_context *msg_ctx,
jobid = atoi(argv[3]);
notify_job_status_byname(
+ messaging_event_context(msg_ctx), msg_ctx,
argv[2], jobid, JOB_STATUS_QUEUED,
SPOOLSS_NOTIFY_MSG_UNIX_JOBID);
@@ -659,10 +661,12 @@ static bool do_printnotify(struct messaging_context *msg_ctx,
jobid = atoi(argv[3]);
notify_job_status_byname(
+ messaging_event_context(msg_ctx), msg_ctx,
argv[2], jobid, JOB_STATUS_DELETING,
SPOOLSS_NOTIFY_MSG_UNIX_JOBID);
notify_job_status_byname(
+ messaging_event_context(msg_ctx), msg_ctx,
argv[2], jobid, JOB_STATUS_DELETING|
JOB_STATUS_DELETED,
SPOOLSS_NOTIFY_MSG_UNIX_JOBID);