From: Ralph Dolmans Date: Wed, 23 Sep 2020 08:05:39 +0000 (+0200) Subject: - Fix edns-client-tags get_option typo X-Git-Tag: release-1.12.0rc1~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e9810ab8bec0756a89d956d63d9c897adf74439;p=thirdparty%2Funbound.git - Fix edns-client-tags get_option typo --- diff --git a/doc/Changelog b/doc/Changelog index 7e6455da8..cd61733be 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +23 September 2020: Ralph + - Fix edns-client-tags get_option typo + 21 September 2020: Ralph - Fix #304: dnstap logging not recovering after dnstap process restarts diff --git a/util/config_file.c b/util/config_file.c index a20b1f9c9..8fd3bcffe 100644 --- a/util/config_file.c +++ b/util/config_file.c @@ -1149,7 +1149,7 @@ config_get_option(struct config_file* cfg, const char* opt, else O_LS3(opt, "access-control-tag-action", acl_tag_actions) else O_LS3(opt, "access-control-tag-data", acl_tag_datas) else O_LS2(opt, "access-control-view", acl_view) - else O_LS2(opt, "edns_client_tags", edns_client_tags) + else O_LS2(opt, "edns-client-tags", edns_client_tags) #ifdef USE_IPSECMOD else O_YNO(opt, "ipsecmod-enabled", ipsecmod_enabled) else O_YNO(opt, "ipsecmod-ignore-bogus", ipsecmod_ignore_bogus)