Closed RMerl closed 3 years ago
Since 0.4.0, using a "resolvconf" parameter in a config file results in a parsing error at load time. The following patch fixes it:
--- a/getdns/stubby/src/yaml/convert_yaml_to_json.c +++ b/getdns/stubby/src/yaml/convert_yaml_to_json.c @@ -68,6 +68,7 @@ static const char* QUOTE_KEY_VALUES[] = { "dnssec_trust_anchors", "tls_auth_name", "digest", + "resolvconf", NULL };
Fixed in https://github.com/getdnsapi/stubby/commit/1c037fad5a21d09e63ad32c77ec1f432ffaa9ef8 - thanks @RMerl
You're welcome :)
Since 0.4.0, using a "resolvconf" parameter in a config file results in a parsing error at load time. The following patch fixes it: