From 128976e01121c877cb815e60504fb6a5391255a2 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 8 Aug 2010 16:42:59 +0200 Subject: s3: Lift the server_messaging_context from notify_printer_byname --- source3/printing/notify.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/notify.c b/source3/printing/notify.c index 0615bebb8c..9f07f6cba6 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -577,7 +577,10 @@ void notify_printer_location(struct tevent_context *ev, snum, strlen(location) + 1, location); } -void notify_printer_byname( const char *printername, uint32 change, const char *value ) +void notify_printer_byname(struct tevent_context *ev, + struct messaging_context *msg_ctx, + const char *printername, uint32 change, + const char *value) { int snum = print_queue_snum(printername); int type = PRINTER_NOTIFY_TYPE; @@ -586,7 +589,7 @@ void notify_printer_byname( const char *printername, uint32 change, const char * return; send_notify_field_buffer( - server_event_context(), server_messaging_context(), + ev, msg_ctx, printername, type, change, snum, strlen(value)+1, value ); } -- cgit