X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fusers.c;h=7df06c2baa41fe382ab536a25b7e2468dabf8b12;hb=f709381fdef43b1857ffb72c2a2721b2a75ecd71;hp=03d6148c04453e6855f5e4b892e230efa7dde5bc;hpb=84e361e1a1db996254ed27ecb888c45489abc297;p=collectd.git diff --git a/src/users.c b/src/users.c index 03d6148c..7df06c2b 100644 --- a/src/users.c +++ b/src/users.c @@ -4,8 +4,7 @@ * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. + * Free Software Foundation; only version 2 of the license is applicable. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -40,16 +39,6 @@ # define USERS_HAVE_READ 0 #endif -static data_source_t dsrc[1] = -{ - {"users", DS_TYPE_GAUGE, 0.0, 65535.0} -}; - -static data_set_t ds = -{ - "users", 1, dsrc -}; - #if USERS_HAVE_READ static void users_submit (gauge_t value) { @@ -111,7 +100,7 @@ static int users_read (void) void module_register (void) { - plugin_register_data_set (&ds); +#if USERS_HAVE_READ plugin_register_read ("users", users_read); - return; +#endif } /* void module_register(void) */