diff options
author | Andreas Schneider <asn@samba.org> | 2010-06-10 11:48:39 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-06-10 17:30:45 -0400 |
commit | 09627638224759c985f0636c5616b0357c91e450 (patch) | |
tree | c3e0f6849b468a879daf4bac954abe7066cb2716 /source3/printing/print_cups.c | |
parent | cbda0369a831ed279cec7ff231ad7399af74db39 (diff) | |
download | samba-09627638224759c985f0636c5616b0357c91e450.tar.gz samba-09627638224759c985f0636c5616b0357c91e450.tar.xz samba-09627638224759c985f0636c5616b0357c91e450.zip |
s3:misc make use of server_[event/messaging]_context directly
Untangle these functions from smbd specific dependencies so they can be freely
used in multiple servers.
Diffstat (limited to 'source3/printing/print_cups.c')
-rw-r--r-- | source3/printing/print_cups.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c index 7366f859733..76a13cf3b42 100644 --- a/source3/printing/print_cups.c +++ b/source3/printing/print_cups.c @@ -434,8 +434,8 @@ static bool cups_pcap_load_async(int *pfd) close_all_print_db(); - if (!NT_STATUS_IS_OK(reinit_after_fork(smbd_messaging_context(), - smbd_event_context(), true))) { + if (!NT_STATUS_IS_OK(reinit_after_fork(server_messaging_context(), + server_event_context(), true))) { DEBUG(0,("cups_pcap_load_async: reinit_after_fork() failed\n")); smb_panic("cups_pcap_load_async: reinit_after_fork() failed"); } @@ -576,7 +576,7 @@ bool cups_cache_reload(void) DEBUG(10,("cups_cache_reload: sync read on fd %d\n", *p_pipe_fd )); - cups_async_callback(smbd_event_context(), + cups_async_callback(server_event_context(), NULL, EVENT_FD_READ, (void *)p_pipe_fd); @@ -592,7 +592,7 @@ bool cups_cache_reload(void) *p_pipe_fd )); /* Trigger an event when the pipe can be read. */ - cache_fd_event = event_add_fd(smbd_event_context(), + cache_fd_event = event_add_fd(server_event_context(), NULL, *p_pipe_fd, EVENT_FD_READ, cups_async_callback, |