From: W.C.A. Wijngaards Date: Thu, 5 Sep 2024 07:35:54 +0000 (+0200) Subject: - Fix config file read for dnstap-sample-rate. X-Git-Tag: release-1.22.0rc1~28 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7ecff4113ca329b7796660ea171c83788f53a13c;p=thirdparty%2Funbound.git - Fix config file read for dnstap-sample-rate. --- diff --git a/doc/Changelog b/doc/Changelog index 2238cca45..e2ab5ccf8 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +5 September 2024: Wouter + - Fix config file read for dnstap-sample-rate. + 2 September 2024: Wouter - Merge #1135: Add new IANA trust anchor. diff --git a/util/configlexer.lex b/util/configlexer.lex index 8b37131cf..527d5bfb9 100644 --- a/util/configlexer.lex +++ b/util/configlexer.lex @@ -514,7 +514,7 @@ dnstap-log-forwarder-query-messages{COLON} { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } dnstap-log-forwarder-response-messages{COLON} { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } -dnstap-sample-rate { YDVAR(1, VAR_DNSTAP_SAMPLE_RATE) } +dnstap-sample-rate{COLON} { YDVAR(1, VAR_DNSTAP_SAMPLE_RATE) } disable-dnssec-lame-check{COLON} { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } ip-ratelimit{COLON} { YDVAR(1, VAR_IP_RATELIMIT) } ip-ratelimit-cookie{COLON} { YDVAR(1, VAR_IP_RATELIMIT_COOKIE) }