virt plugin: Use the IS_TRUE() macro.
authorFlorian Forster <octo@collectd.org>
Fri, 28 Oct 2016 08:44:47 +0000 (10:44 +0200)
committerFlorian Forster <octo@collectd.org>
Fri, 28 Oct 2016 11:43:54 +0000 (13:43 +0200)
src/virt.c

index 6e1cd21..6d83a5c 100644 (file)
@@ -363,14 +363,7 @@ lv_config (const char *key, const char *value)
         return 0;
     }
     if (strcasecmp (key, "BlockDeviceFormatBasename") == 0) {
-        if (strcasecmp (value, "true") == 0)
-            blockdevice_format_basename = 1;
-        else if (strcasecmp (value, "false") == 0)
-            blockdevice_format_basename = 0;
-        else {
-            ERROR (PLUGIN_NAME " plugin: unknown BlockDeviceFormatBasename: %s", value);
-            return -1;
-        }
+        blockdevice_format_basename = IS_TRUE (value);
         return 0;
     }
     if (strcasecmp (key, "InterfaceDevice") == 0) {