X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmemory.c;h=c31b30efe29b109cf3ae7c73055a48502c5b21fb;hb=ee9183741485112c084467779cf0b05e23eeed05;hp=a4a9af3a2128fdce1343d90e7b6e85a24eb8b7dd;hpb=7a36927e0c5411c701d9e1bfd3f02a9c2f254d0f;p=collectd.git diff --git a/src/memory.c b/src/memory.c index a4a9af3a..c31b30ef 100644 --- a/src/memory.c +++ b/src/memory.c @@ -111,10 +111,10 @@ static void memory_submit (const char *type_instance, gauge_t value) vl.time = time (NULL); sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "memory", sizeof (vl.plugin)); - strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - vl.type_instance[sizeof (vl.type_instance) - 1] = '\0'; + sstrncpy (vl.type, "memory", sizeof (vl.type)); + sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - plugin_dispatch_values ("memory", &vl); + plugin_dispatch_values (&vl); } static int memory_read (void)