X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fload.c;h=b7372a1091f9e35e7ffc597570129dc3cb636c2a;hb=526320a0389a54a3629038fe6b34da8c6d4eec0e;hp=15215d3c6df1461aa4f4e3e8a21d35525a328e23;hpb=540f2619a4d09fdb6ae465e8cc935c9dec4bcf70;p=collectd.git diff --git a/src/load.c b/src/load.c index 15215d3c..b7372a10 100644 --- a/src/load.c +++ b/src/load.c @@ -1,6 +1,6 @@ /** * collectd - src/load.c - * Copyright (C) 2005-2007 Florian octo Forster + * Copyright (C) 2005-2008 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -50,11 +50,11 @@ static void load_submit (gauge_t snum, gauge_t mnum, gauge_t lnum) vl.values = values; vl.values_len = STATIC_ARRAY_SIZE (values); - vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "load"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "load", sizeof (vl.plugin)); + sstrncpy (vl.type, "load", sizeof (vl.type)); - plugin_dispatch_values ("load", &vl); + plugin_dispatch_values (&vl); } static int load_read (void)