Code

src/plugin.c: Initialize "next_read" field of read callbacks.
[collectd.git] / src / plugin.c
index cdd56bd79dd8f2f4d0c6374c7d33fe5ebbe224d7..d895891579033323f1d6e61d29ba6b2b256623c3 100644 (file)
@@ -714,6 +714,9 @@ static int plugin_insert_read (read_func_t *rf)
        int status;
        llentry_t *le;
 
+       cdtime_t now = cdtime ();
+       CDTIME_T_TO_TIMESPEC (now, &rf->rf_next_read);
+
        pthread_mutex_lock (&read_lock);
 
        if (read_list == NULL)