summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Kobal <vlad@prokk.net>2019-06-13 20:39:47 +0300
committerGitHub <noreply@github.com>2019-06-13 20:39:47 +0300
commitd8fa995e8400d9e722abe2f5ba1556e2e1bb024e (patch)
treede5e04a00e6117df54835d9f3d948fc88d7f948a
parent3faf9d49377e6ef391450c499742183db6813006 (diff)
Fix typo in nfacct.plugin (#6260)
-rw-r--r--collectors/nfacct.plugin/plugin_nfacct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/collectors/nfacct.plugin/plugin_nfacct.c b/collectors/nfacct.plugin/plugin_nfacct.c
index 5458998245..feec34b85d 100644
--- a/collectors/nfacct.plugin/plugin_nfacct.c
+++ b/collectors/nfacct.plugin/plugin_nfacct.c
@@ -835,12 +835,12 @@ int main(int argc, char **argv) {
error("update frequency %d seconds is too small for NFACCT. Using %d.", freq, netdata_update_every);
#ifdef DO_NFACCT
- if(debug) fprintf(stderr, "freeipmi.plugin: calling nfacct_init()\n");
+ if(debug) fprintf(stderr, "nfacct.plugin: calling nfacct_init()\n");
int nfacct = !nfacct_init(netdata_update_every);
#endif
#ifdef DO_NFSTAT
- if(debug) fprintf(stderr, "freeipmi.plugin: calling nfstat_init()\n");
+ if(debug) fprintf(stderr, "nfacct.plugin: calling nfstat_init()\n");
int nfstat = !nfstat_init(netdata_update_every);
#endif