X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fvserver.c;h=7b83c6174a830a0da933f4bd0c90f1c1180b67a3;hb=482d9fbe626c5efc756e64a991b0cdc181a28de0;hp=651844fc06ddc4efc82b70dc7284d2f35bbd68ea;hpb=44e4d530c8db2e078cd73ab254d1be41a5f2812c;p=collectd.git diff --git a/src/vserver.c b/src/vserver.c index 651844fc..7b83c617 100644 --- a/src/vserver.c +++ b/src/vserver.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 @@ -29,16 +28,12 @@ #define BUFSIZE 512 -#define MODULE_NAME "vserver" #define PROCDIR "/proc/virtual" -#if defined(KERNEL_LINUX) -# define VSERVER_HAVE_READ 1 -#else -# define VSERVER_HAVE_READ 0 -#endif /* defined(KERNEL_LINUX) */ +#if !KERNEL_LINUX +# error "No applicable input method." +#endif -#if VSERVER_HAVE_READ static int pagesize = 0; static int vserver_init (void) @@ -307,14 +302,11 @@ static int vserver_read (void) return (0); } /* int vserver_read */ -#endif /* VSERVER_HAVE_READ */ void module_register (void) { -#if VSERVER_HAVE_READ plugin_register_init ("vserver", vserver_init); plugin_register_read ("vserver", vserver_read); -#endif /* VSERVER_HAVE_READ */ } /* void module_register(void) */ /* vim: set ts=4 sw=4 noexpandtab : */