Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / fscache.c
index 6dc6e72..dd36b8b 100644 (file)
@@ -113,7 +113,6 @@ static void fscache_submit(const char *section, const char *name,
   vl.values = &value;
   vl.values_len = 1;
 
-  sstrncpy(vl.host, hostname_g, sizeof(vl.host));
   sstrncpy(vl.plugin, "fscache", sizeof(vl.plugin));
   sstrncpy(vl.plugin_instance, section, sizeof(vl.plugin_instance));
   sstrncpy(vl.type, "fscache_stat", sizeof(vl.type));
@@ -210,13 +209,11 @@ static int fscache_read(void) {
 
   } else {
     printf("cant open file\n");
-    return (-1);
+    return -1;
   }
-  return (0);
+  return 0;
 }
 
 void module_register(void) {
   plugin_register_read("fscache", fscache_read);
 } /* void module_register */
-
-/* vim: set sw=4 sts=4 et : */