summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorvkalintiris <vasilis@netdata.cloud>2021-02-25 14:29:41 +0200
committerGitHub <noreply@github.com>2021-02-25 14:29:41 +0200
commitad163251fca6056b3f88221cfc8f246ce1df3feb (patch)
treef64ad051b098c809a2ef155fc6a2610b0e517c1a /daemon
parent4455cb5d847a30f6ee9aa86bfc77637c83eb1f20 (diff)
Remove unreachable #else directives in plugins. (#10523)
They are unreachable because Makefile.am will conditionally include the relevant source files iff the #ifdef's argument is defined in configure.ac.
Diffstat (limited to 'daemon')
-rw-r--r--daemon/buildinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/buildinfo.c b/daemon/buildinfo.c
index de02a72e1a..7546b708be 100644
--- a/daemon/buildinfo.c
+++ b/daemon/buildinfo.c
@@ -116,7 +116,7 @@
#define FEAT_CUPS "NO"
#endif
-#ifdef HAVE_LIBMNL
+#ifdef HAVE_NFACCT
#define FEAT_NFACCT "YES"
#else
#define FEAT_NFACCT "NO"