X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fload.c;h=b7372a1091f9e35e7ffc597570129dc3cb636c2a;hb=108068f268cad453e5d3b54e288917409db1e467;hp=7d11b986fe5ba0e4a390a4afa7bde50f62d8d6dc;hpb=47faf00c18402cefd0e195d63ad48d5e7e6a4a92;p=collectd.git diff --git a/src/load.c b/src/load.c index 7d11b986..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,10 +50,9 @@ 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"); - strcpy (vl.type, "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 (&vl); }