X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fusers.c;h=7df06c2baa41fe382ab536a25b7e2468dabf8b12;hb=63cbff115ba03717e81087d1419fc07c24d205c2;hp=e600aab3ae01e36b33b2946db50b58211a673f5c;hpb=6dee31bca87a552017791aa97afa9bd40bc0ebfe;p=collectd.git diff --git a/src/users.c b/src/users.c index e600aab3..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) { @@ -109,13 +98,9 @@ static int users_read (void) } /* int users_read */ #endif /* USERS_HAVE_READ */ -void module_register (modreg_e load) +void module_register (void) { - if (load & MR_DATASETS) - plugin_register_data_set (&ds); - #if USERS_HAVE_READ - if (load & MR_READ) - plugin_register_read ("users", users_read); + plugin_register_read ("users", users_read); #endif } /* void module_register(void) */