From: Florian Forster Date: Wed, 27 Aug 2008 08:05:02 +0000 (+0200) Subject: onewire plugin: Remove the "Alias" config option. X-Git-Tag: collectd-4.5.0~24 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=4f85e2d257d6a390fa6569803340c8c21a18ffc9;p=collectd.git onewire plugin: Remove the "Alias" config option. It's not implemented and not documented and it's easy enough to add back in when somebody cares to implement it. --- diff --git a/src/onewire.c b/src/onewire.c index 77fe08ca..dd7f527d 100644 --- a/src/onewire.c +++ b/src/onewire.c @@ -62,7 +62,6 @@ static char *device_g = NULL; static const char *config_keys[] = { - "Alias", "Device", "IgnoreSelected", "Sensor", @@ -105,10 +104,6 @@ static int cow_load_config (const char *key, const char *value) sfree (device_g); device_g = temp; } - else if (strcasecmp (key, "Alias") == 0) - { - /* azogtodo alias-list */ - } else { return (-1);