From fc6e7bdc9e752b7b5ee4b978a605dde5b7c075e4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 8 Aug 2010 15:59:00 +0200 Subject: [PATCH] s3: Lift the server_messaging_context from print_notify_event_send_messages --- source3/printing/notify.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source3/printing/notify.c b/source3/printing/notify.c index df9a15073d..1a499b2ca8 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -230,11 +230,13 @@ static void print_notify_event_send_messages(struct tevent_context *event_ctx, struct timeval now, void *private_data) { + struct messaging_context *msg_ctx = talloc_get_type_abort( + private_data, struct messaging_context); /* Remove this timed event handler. */ TALLOC_FREE(notify_event); change_to_root_user(); - print_notify_send_messages(server_messaging_context(), 0); + print_notify_send_messages(msg_ctx, 0); } /********************************************************************** @@ -332,7 +334,8 @@ to notify_queue_head\n", msg->type, msg->field, msg->printer)); /* Add an event for 1 second's time to send this queue. */ notify_event = tevent_add_timer(server_event_context(), NULL, timeval_current_ofs(1,0), - print_notify_event_send_messages, NULL); + print_notify_event_send_messages, + server_messaging_context()); } } -- 2.34.1