powerdns plugin: Fix a bug when checking the configuration options.
authorFlorian Forster <octo@noris.net>
Mon, 5 May 2008 15:29:10 +0000 (17:29 +0200)
committerFlorian Forster <octo@noris.net>
Mon, 5 May 2008 15:29:10 +0000 (17:29 +0200)
src/powerdns.c

index bf1b88e..dee2c70 100644 (file)
@@ -909,7 +909,7 @@ static int powerdns_config (oconfig_item_t *ci) /* {{{ */
     if ((strcasecmp ("Server", option->key) == 0)
        || (strcasecmp ("Recursor", option->key) == 0))
       powerdns_config_add_server (option);
-    if (strcasecmp ("LocalSocket", option->key) == 0)
+    else if (strcasecmp ("LocalSocket", option->key) == 0)
     {
       char *temp = strdup (option->key);
       if (temp == NULL)