From: Costa Tsaousis (ktsaou) Date: Sun, 20 Nov 2016 22:05:37 +0000 (+0200) Subject: enable = enabled, to be the same with all other such options X-Git-Tag: v1.5.0~170^2 X-Git-Url: https://arthur.barton.de/gitweb/?p=netdata.git;a=commitdiff_plain;h=9c74e22258b82e631a65d551a5dff8489f69abaf enable = enabled, to be the same with all other such options --- diff --git a/src/backends.c b/src/backends.c index 5f330342..f7c51eaf 100644 --- a/src/backends.c +++ b/src/backends.c @@ -278,7 +278,7 @@ void *backends_main(void *ptr) { int default_port = 0; int sock = -1; uint32_t options; - int enabled = config_get_boolean("backend", "enable", 0); + int enabled = config_get_boolean("backend", "enabled", 0); const char *source = config_get("backend", "data source", "average"); const char *type = config_get("backend", "type", "graphite"); const char *destination = config_get("backend", "destination", "localhost");