X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fmbmon.c;h=d23062db2d54734551789c76cac837c9915c43f2;hb=9817e7298bd6c364fa17347327af54adf048bd21;hp=22a26da5e613ef884d3b5c92331b574d85e1d5ff;hpb=b42974a9e2d83e70c166cd572725a8d72bd2a1c4;p=collectd.git diff --git a/src/mbmon.c b/src/mbmon.c index 22a26da5..d23062db 100644 --- a/src/mbmon.c +++ b/src/mbmon.c @@ -1,6 +1,7 @@ /** * collectd - src/mbmon.c - * Copyright (C) 2006 Flavio Stanchina + * Copyright (C) 2006 Flavio Stanchina + * Copyright (C) 2006-2007 Florian octo Forster * Based on the hddtemp plugin. * * This program is free software; you can redistribute it and/or modify it @@ -19,6 +20,7 @@ * * Authors: * Flavio Stanchina + * Florian Forster **/ #include "collectd.h" @@ -227,12 +229,12 @@ static void mbmon_submit (const char *type, const char *type_instance, vl.values = values; vl.values_len = 1; - vl.time = time (NULL); sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "mbmon", sizeof (vl.plugin)); - strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); + sstrncpy (vl.type, type, sizeof (vl.type)); + sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - plugin_dispatch_values (type, &vl); + plugin_dispatch_values (&vl); } /* void mbmon_submit */ /* Trim trailing whitespace from a string. */