X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fusers.c;h=10f34ee9483023959cc129c6e53a7e29e18e18c5;hb=599e3edb4905c6be61c0fc66a62be1d69a4833b3;hp=1e337540e5b4f5b258d00234472385c8a1187454;hpb=330010ea9cf8dad458dc9245d8284a7dbf62b1a9;p=collectd.git diff --git a/src/users.c b/src/users.c index 1e337540..10f34ee9 100644 --- a/src/users.c +++ b/src/users.c @@ -21,7 +21,7 @@ * Authors: * Sebastian Harl * Niki W. Waibel - * Florian octo Forster + * Florian octo Forster * Oleg King **/ @@ -102,11 +102,21 @@ static int users_read (void) #elif HAVE_LIBSTATGRAB sg_user_stats *us; +# if HAVE_LIBSTATGRAB_0_90 + size_t num_entries; + us = sg_get_user_stats (&num_entries); +# else us = sg_get_user_stats (); +# endif if (us == NULL) return (-1); - users_submit ((gauge_t) us->num_entries); + users_submit ((gauge_t) +# if HAVE_LIBSTATGRAB_0_90 + num_entries); +# else + us->num_entries); +# endif /* #endif HAVE_LIBSTATGRAB */ #else