X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fmbmon.c;h=859714c2782f28d42d42cd401fea017259187ea8;hb=4c295efaa4044d56f6222186557d35aa165ef6db;hp=50d7363268840771f6d7ff30d85ae58e252bc7ec;hpb=bec5a6dda77c05eae27e5aeecdf601e573090cc5;p=collectd.git diff --git a/src/mbmon.c b/src/mbmon.c index 50d73632..859714c2 100644 --- a/src/mbmon.c +++ b/src/mbmon.c @@ -227,12 +227,12 @@ static void mbmon_submit (const char *type, const char *type_instance, vl.values = values; vl.values_len = 1; - vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "mbmon"); - strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "mbmon", sizeof (vl.plugin)); + 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. */