From 795589b4f81b8d40d3cd6a53b85153df01e3ff01 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 8 Aug 2010 22:50:28 +0200 Subject: s3: Remove the smbd_messaging_context from cups_cache_reload --- source3/printing/print_cups.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'source3/printing/print_cups.c') diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c index 0ce11ae6f8..f96e8e1726 100644 --- a/source3/printing/print_cups.c +++ b/source3/printing/print_cups.c @@ -558,7 +558,8 @@ static void cups_async_callback(struct event_context *event_ctx, TALLOC_FREE(cache_fd_event); } -bool cups_cache_reload(void) +bool cups_cache_reload(struct tevent_context *ev, + struct messaging_context *msg_ctx) { int *p_pipe_fd = TALLOC_P(NULL, int); @@ -569,9 +570,7 @@ bool cups_cache_reload(void) *p_pipe_fd = -1; /* Set up an async refresh. */ - if (!cups_pcap_load_async(server_event_context(), - server_messaging_context(), - p_pipe_fd)) { + if (!cups_pcap_load_async(ev, msg_ctx, p_pipe_fd)) { return false; } if (!local_pcap_copy) { @@ -581,8 +580,7 @@ bool cups_cache_reload(void) DEBUG(10,("cups_cache_reload: sync read on fd %d\n", *p_pipe_fd )); - cups_async_callback(server_event_context(), - NULL, + cups_async_callback(ev, NULL, EVENT_FD_READ, (void *)p_pipe_fd); if (!local_pcap_copy) { @@ -597,7 +595,7 @@ bool cups_cache_reload(void) *p_pipe_fd )); /* Trigger an event when the pipe can be read. */ - cache_fd_event = event_add_fd(server_event_context(), + cache_fd_event = event_add_fd(ev, NULL, *p_pipe_fd, EVENT_FD_READ, cups_async_callback, -- cgit