X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Finterface.c;h=86110b0c4bfedcd307d84c26188265124893a745;hp=e0e08c395d194c2ba3d69dd8b67b8525e262a854;hb=d486225f89ea52d8ed2b4242eba2ad94c409f837;hpb=f25d207699e013bb47c0083fe56b8358a98f6f4d diff --git a/src/interface.c b/src/interface.c index e0e08c39..86110b0c 100644 --- a/src/interface.c +++ b/src/interface.c @@ -86,9 +86,9 @@ static const char *config_keys[] = { }; static int config_keys_num = STATIC_ARRAY_SIZE(config_keys); -static ignorelist_t *ignorelist = NULL; +static ignorelist_t *ignorelist; -static bool report_inactive = 1; +static bool report_inactive = true; #ifdef HAVE_LIBKSTAT #if HAVE_KSTAT_H @@ -97,7 +97,7 @@ static bool report_inactive = 1; #define MAX_NUMIF 256 extern kstat_ctl_t *kc; static kstat_t *ksp[MAX_NUMIF]; -static int numif = 0; +static int numif; static bool unique_name; #endif /* HAVE_LIBKSTAT */ @@ -117,7 +117,7 @@ static int interface_config(const char *key, const char *value) { else if (strcasecmp(key, "UniqueName") == 0) { #ifdef HAVE_LIBKSTAT if (IS_TRUE(value)) - unique_name = 1; + unique_name = true; #else WARNING("interface plugin: the \"UniqueName\" option is only valid on " "Solaris.");