s3-smbd: Pass event and messaging context to smbd_parent_housekeeping().
authorAndreas Schneider <asn@samba.org>
Fri, 8 Jul 2011 09:28:12 +0000 (11:28 +0200)
committerAndreas Schneider <asn@samba.org>
Thu, 14 Jul 2011 14:10:47 +0000 (16:10 +0200)
source3/smbd/server.c

index 30d4ecf0642dedd9e6deb9543fe8942f735504cc..6fc2a14fc4156c198c3daeb80b72f93b7e3984d2 100644 (file)
@@ -585,6 +585,8 @@ static bool smbd_open_one_socket(struct smbd_parent_context *parent,
 
 static bool smbd_parent_housekeeping(const struct timeval *now, void *private_data)
 {
+       struct messaging_context *msg_ctx =
+               talloc_get_type_abort(private_data, struct messaging_context);
        time_t printcap_cache_time = (time_t)lp_printcap_cache_time();
        time_t t = time_mono(NULL);
 
@@ -594,8 +596,8 @@ static bool smbd_parent_housekeeping(const struct timeval *now, void *private_da
        if ((printcap_cache_time != 0)
         && (t >= (last_printer_reload_time + printcap_cache_time))) {
                DEBUG( 3,( "Printcap cache time expired.\n"));
-               pcap_cache_reload(server_event_context(),
-                                 smbd_messaging_context(),
+               pcap_cache_reload(messaging_event_context(msg_ctx),
+                                 msg_ctx,
                                  &reload_pcap_change_notify);
                last_printer_reload_time = t;
        }
@@ -756,7 +758,7 @@ static bool open_sockets_smbd(struct smbd_parent_context *parent,
        if (!(event_add_idle(ev_ctx, NULL,
                             timeval_set(SMBD_HOUSEKEEPING_INTERVAL, 0),
                             "parent_housekeeping", smbd_parent_housekeeping,
-                            NULL))) {
+                            msg_ctx))) {
                DEBUG(0, ("Could not add parent_housekeeping event\n"));
                return false;
        }