X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fnetapp.c;h=281764c7324f9071bb3c316f2a07fdb90ce55876;hp=44fb976841c3c96d383729f87ce8c0941aec53b7;hb=d486225f89ea52d8ed2b4242eba2ad94c409f837;hpb=3a9c4019736178fb78e65389acaf97c84cdc3086 diff --git a/src/netapp.c b/src/netapp.c index 44fb9768..281764c7 100644 --- a/src/netapp.c +++ b/src/netapp.c @@ -2842,11 +2842,11 @@ static int cna_register_host(host_config_t *host) /* {{{ */ static int cna_config_host(host_config_t *host, /* {{{ */ const oconfig_item_t *ci) { oconfig_item_t *item; - _Bool is_vfiler = 0; + bool is_vfiler = false; int status; if (!strcasecmp(ci->key, "VFiler")) - is_vfiler = 1; + is_vfiler = true; if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) { WARNING("netapp plugin: \"%s\" needs exactly one string argument. Ignoring "