From 2b8904eb81e3eae5e72f1f29e09277e0fef67a2e Mon Sep 17 00:00:00 2001 From: Pavel Rochnyack Date: Mon, 23 Oct 2017 21:00:52 +0700 Subject: [PATCH] lvm plugin: Fix compilation issues --- src/lvm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lvm.c b/src/lvm.c index 4bb1c340..3ec79dea 100644 --- a/src/lvm.c +++ b/src/lvm.c @@ -187,16 +187,16 @@ static int lvm_read(void) { return 0; } /*lvm_read */ -static int lvm_init(void) { +static int c_lvm_init(void) { #if defined(HAVE_SYS_CAPABILITY_H) && defined(CAP_SYS_ADMIN) if (check_capability(CAP_SYS_ADMIN) != 0) { if (getuid() == 0) - WARNING("smart plugin: Running collectd as root, but the " + WARNING("lvm plugin: Running collectd as root, but the " "CAP_SYS_ADMIN capability is missing. The plugin's read " "function will probably fail. Is your init system dropping " "capabilities?"); else - WARNING("smart plugin: collectd doesn't have the CAP_SYS_ADMIN " + WARNING("lvm plugin: collectd doesn't have the CAP_SYS_ADMIN " "capability. If you don't want to run collectd as root, try " "running \"setcap cap_sys_admin=ep\" on the collectd binary."); } @@ -205,6 +205,6 @@ static int lvm_init(void) { } void module_register(void) { - plugin_register_init("lvm", lvm_init); + plugin_register_init("lvm", c_lvm_init); plugin_register_read("lvm", lvm_read); } /* void module_register */ -- 2.11.0