X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fload.c;h=b7372a1091f9e35e7ffc597570129dc3cb636c2a;hb=08f5dee4cf337eb0cac72b87c24092e4ea2089cf;hp=7d11b986fe5ba0e4a390a4afa7bde50f62d8d6dc;hpb=089d33f1f455da115ca0c87160df8dbd49286377;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); }