X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmemory.c;h=c31b30efe29b109cf3ae7c73055a48502c5b21fb;hb=fd9c88963b04c9e9050a952ba0f018493e8b7638;hp=fe3a16ebc17745ebcafe893e855daf0df67ba6ee;hpb=f05e9721b9ea58d6ea4a8295a80cede2d6b327d1;p=collectd.git diff --git a/src/memory.c b/src/memory.c index fe3a16eb..c31b30ef 100644 --- a/src/memory.c +++ b/src/memory.c @@ -109,12 +109,12 @@ static void memory_submit (const char *type_instance, gauge_t value) vl.values = values; vl.values_len = 1; vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "memory"); - strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - vl.type_instance[sizeof (vl.type_instance) - 1] = '\0'; + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "memory", sizeof (vl.plugin)); + 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) @@ -319,7 +319,7 @@ static int memory_read (void) if ((ios = sg_get_mem_stats ()) != NULL) { memory_submit ("used", ios->used); - memory_submit ("cached", ios->cached); + memory_submit ("cached", ios->cache); memory_submit ("free", ios->free); } #endif /* HAVE_LIBSTATGRAB */