diff options
author | Volker Lendecke <vl@samba.org> | 2017-07-21 19:08:43 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-12-05 00:56:12 +0100 |
commit | fc2f0023a0ea521c5bc392db8f635bc3f23f68b8 (patch) | |
tree | bc089e609260ac18a94faa90b224a1a374b41528 /source3/printing | |
parent | 2dac8eb2778802847688ef862f375440d3aa0ff4 (diff) | |
download | samba-fc2f0023a0ea521c5bc392db8f635bc3f23f68b8.tar.gz |
messaging: Remove the "n_sent" arg from message_send_all
The only user of this is an informative message in smbcontrol. I don't think
that's worth the effort.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/queue_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/queue_process.c b/source3/printing/queue_process.c index e07aca036fa..381ef348805 100644 --- a/source3/printing/queue_process.c +++ b/source3/printing/queue_process.c @@ -144,7 +144,7 @@ static void reload_pcap_change_notify(struct tevent_context *ev, */ delete_and_reload_printers_full(ev, msg_ctx); - message_send_all(msg_ctx, MSG_PRINTER_PCAP, NULL, 0, NULL); + message_send_all(msg_ctx, MSG_PRINTER_PCAP, NULL, 0); } struct bq_state { |