From fb99bbe67597555109ebd65613a5aab395b43499 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 15 May 2007 10:50:44 +0000 Subject: r22895: Convert some more calls from message_send_buf to messaging_send_buf (This used to be commit c8b98273406242a89a7e5d1fb5d79120ebe5822a) --- source3/printing/printing.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/printing/printing.c') diff --git a/source3/printing/printing.c b/source3/printing/printing.c index fd1649737b..9bae768c19 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1535,8 +1535,9 @@ static void print_queue_update(int snum, BOOL force) /* finally send the message */ - message_send_pid(pid_to_procid(background_lpq_updater_pid), - MSG_PRINTER_UPDATE, buffer, len, False); + messaging_send_buf(smbd_messaging_context(), + pid_to_procid(background_lpq_updater_pid), + MSG_PRINTER_UPDATE, (uint8 *)buffer, len); SAFE_FREE( buffer ); -- cgit