Fix header condition
authorDagobert Michelsen <dam@opencsw.org>
Thu, 4 Jun 2015 11:25:48 +0000 (13:25 +0200)
committerFlorian Forster <octo@collectd.org>
Sat, 6 Jun 2015 19:16:36 +0000 (21:16 +0200)
The dependency is either UTMPX or UTMP or Statgrab. The inclusion above hasn't statgrab.h in the elif-chain, that means compilation fails when only libstatgrab is available. The line can safely be taken out as the same condition is checked in #L120.

src/users.c

index 10f34ee..139c976 100644 (file)
@@ -40,9 +40,6 @@
 #elif HAVE_UTMP_H
 # include <utmp.h>
 /* #endif HAVE_UTMP_H */
-
-#else
-# error "No applicable input method."
 #endif
 
 static void users_submit (gauge_t value)