diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 22:53:02 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 23:37:47 +0200 |
commit | 1c1d83a5327b86042df7c33d075e05adff7a30f2 (patch) | |
tree | da71f7ac91d27a7602ffdfa2fb076709d986a996 | |
parent | 795589b4f81b8d40d3cd6a53b85153df01e3ff01 (diff) | |
download | samba-1c1d83a5327b86042df7c33d075e05adff7a30f2.tar.gz samba-1c1d83a5327b86042df7c33d075e05adff7a30f2.tar.bz2 samba-1c1d83a5327b86042df7c33d075e05adff7a30f2.zip |
s3: Remove the smbd_messaging_context from pcap_cache_reload
-rw-r--r-- | source3/include/proto.h | 3 | ||||
-rw-r--r-- | source3/printing/load.c | 6 | ||||
-rw-r--r-- | source3/printing/pcap.c | 6 | ||||
-rw-r--r-- | source3/smbd/server_reload.c | 2 |
4 files changed, 10 insertions, 7 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f7dd829d4b..ace63aeabe 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4467,7 +4467,8 @@ void notify_printer_byname(struct tevent_context *ev, /* The following definitions come from printing/pcap.c */ -void pcap_cache_reload(void); +void pcap_cache_reload(struct tevent_context *ev, + struct messaging_context *msg_ctx); bool pcap_printername_ok(const char *printername); /* The following definitions come from printing/printing.c */ diff --git a/source3/printing/load.c b/source3/printing/load.c index 99b5226159..58ff8812f4 100644 --- a/source3/printing/load.c +++ b/source3/printing/load.c @@ -54,8 +54,10 @@ load automatic printer services ***************************************************************************/ void load_printers(void) { - if (!pcap_cache_loaded()) - pcap_cache_reload(); + if (!pcap_cache_loaded()) { + pcap_cache_reload(server_event_context(), + server_messaging_context()); + } add_auto_printers(); diff --git a/source3/printing/pcap.c b/source3/printing/pcap.c index d8b716028e..d9c2941abe 100644 --- a/source3/printing/pcap.c +++ b/source3/printing/pcap.c @@ -101,7 +101,8 @@ void pcap_cache_replace(const struct pcap_cache *pcache) } } -void pcap_cache_reload(void) +void pcap_cache_reload(struct tevent_context *ev, + struct messaging_context *msg_ctx) { const char *pcap_name = lp_printcapname(); bool pcap_reloaded = False; @@ -120,8 +121,7 @@ void pcap_cache_reload(void) #ifdef HAVE_CUPS if (strequal(pcap_name, "cups")) { - pcap_reloaded = cups_cache_reload(server_event_context(), - server_messaging_context()); + pcap_reloaded = cups_cache_reload(ev, msg_ctx); goto done; } #endif diff --git a/source3/smbd/server_reload.c b/source3/smbd/server_reload.c index 80e30c04b6..22a5675e07 100644 --- a/source3/smbd/server_reload.c +++ b/source3/smbd/server_reload.c @@ -40,7 +40,7 @@ void reload_printers(struct messaging_context *msg_ctx) NTSTATUS status; bool skip = false; - pcap_cache_reload(); + pcap_cache_reload(server_event_context(), msg_ctx); status = make_server_info_system(talloc_tos(), &server_info); if (!NT_STATUS_IS_OK(status)) { |