diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 16:19:03 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 18:09:35 +0200 |
commit | 21811fe72df202413ca7f65bf271d4c9fe1345c5 (patch) | |
tree | 3f0f7fd6eff4d05564a772c5965006104d422f2b /source3/printing/printing.c | |
parent | 49d18478fd952b360221852a0bc0e2f4f6427aea (diff) | |
download | samba-21811fe72df202413ca7f65bf271d4c9fe1345c5.tar.gz samba-21811fe72df202413ca7f65bf271d4c9fe1345c5.tar.bz2 samba-21811fe72df202413ca7f65bf271d4c9fe1345c5.zip |
s3: Lift the server_messaging_context from notify_printer_status
Diffstat (limited to 'source3/printing/printing.c')
-rw-r--r-- | source3/printing/printing.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index 8a12814386..5d8348e705 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -3063,7 +3063,8 @@ WERROR print_queue_pause(struct auth_serversupplied_info *server_info, /* Send a printer notify message */ - notify_printer_status(snum, PRINTER_STATUS_PAUSED); + notify_printer_status(server_event_context(), msg_ctx, snum, + PRINTER_STATUS_PAUSED); return WERR_OK; } @@ -3099,7 +3100,8 @@ WERROR print_queue_resume(struct auth_serversupplied_info *server_info, /* Send a printer notify message */ - notify_printer_status(snum, PRINTER_STATUS_OK); + notify_printer_status(server_event_context(), msg_ctx, snum, + PRINTER_STATUS_OK); return WERR_OK; } |