Remove resolve_reverse_lookup setting

This setting seems ill advised and breaks TLS verification.

Fixes #1034.
This commit is contained in:
Will Storey 2019-10-12 17:09:13 -07:00
commit 7e6d24420c
4 changed files with 9 additions and 58 deletions

View file

@ -566,6 +566,12 @@ static int backwards_compatibility(const char *module, CONFIG_NODE *node,
return TRUE;
}
}
if (g_strcmp0(module, "core") == 0 &&
g_strcmp0(node->key, "resolve_reverse_lookup") == 0) {
config_node_set_str(mainconfig, parent, node->key, NULL);
config_changed = TRUE;
return TRUE;
}
return new_key != NULL;
}