onewire plugin: Remove the "Alias" config option.
authorFlorian Forster <octo@noris.net>
Wed, 27 Aug 2008 08:05:02 +0000 (10:05 +0200)
committerFlorian Forster <octo@noris.net>
Wed, 27 Aug 2008 08:05:02 +0000 (10:05 +0200)
It's not implemented and not documented and it's easy enough to add back
in when somebody cares to implement it.

src/onewire.c

index 77fe08c..dd7f527 100644 (file)
@@ -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);