summaryrefslogtreecommitdiff
path: root/source3/printing/print_cups.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-08-08 22:50:28 +0200
committerVolker Lendecke <vl@samba.org>2010-08-08 23:37:47 +0200
commit795589b4f81b8d40d3cd6a53b85153df01e3ff01 (patch)
tree7a26f0eade86b974f78f952e03592f4e4bad95ae /source3/printing/print_cups.c
parent83045b1ba9fb8aa211d94b66453e2a2a61cae7ed (diff)
downloadsamba-795589b4f81b8d40d3cd6a53b85153df01e3ff01.tar.gz
samba-795589b4f81b8d40d3cd6a53b85153df01e3ff01.tar.bz2
samba-795589b4f81b8d40d3cd6a53b85153df01e3ff01.zip
s3: Remove the smbd_messaging_context from cups_cache_reload
Diffstat (limited to 'source3/printing/print_cups.c')
-rw-r--r--source3/printing/print_cups.c12
1 files changed, 5 insertions, 7 deletions
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,