X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fmbmon.c;h=2d6d77e21474c274af56c7c9e2cdcd7e41575af2;hb=43d7245c20930161284e5784fbf115d1221a5951;hp=50d7363268840771f6d7ff30d85ae58e252bc7ec;hpb=3bb58d8d87a0db2b3177cbc52c2078c5543e7944;p=collectd.git diff --git a/src/mbmon.c b/src/mbmon.c index 50d73632..2d6d77e2 100644 --- a/src/mbmon.c +++ b/src/mbmon.c @@ -1,6 +1,7 @@ /** * collectd - src/mbmon.c - * Copyright (C) 2006 Flavio Stanchina + * Copyright (C) 2006 Flavio Stanchina + * Copyright (C) 2006-2007 Florian octo Forster * Based on the hddtemp plugin. * * This program is free software; you can redistribute it and/or modify it @@ -19,6 +20,7 @@ * * Authors: * Flavio Stanchina + * Florian Forster **/ #include "collectd.h" @@ -27,7 +29,6 @@ #include "configfile.h" #include -#include #include #include @@ -227,12 +228,12 @@ static void mbmon_submit (const char *type, const char *type_instance, vl.values = values; vl.values_len = 1; - vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "mbmon"); - strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "mbmon", sizeof (vl.plugin)); + sstrncpy (vl.type, type, sizeof (vl.type)); + sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); - plugin_dispatch_values (type, &vl); + plugin_dispatch_values (&vl); } /* void mbmon_submit */ /* Trim trailing whitespace from a string. */ @@ -259,8 +260,8 @@ static int mbmon_read (void) double value; char *nextc; - char *type; - char *inst; + const char *type; + const char *inst; *t++ = '\0'; trim_spaces (s);