From 8f8a8a341a8525b1b6dc880cc3b70a3c7c03111c Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 25 Mar 2022 16:07:23 +0100 Subject: [PATCH] - Fix spelling error in comment in sldns_str2wire_svcparam_key_lookup. --- doc/Changelog | 3 +++ sldns/str2wire.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index ea01a80a9..9d2d2604e 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +25 March 2022: Wouter + - Fix spelling error in comment in sldns_str2wire_svcparam_key_lookup. + 23 March 2022: Wouter - Fix #651: [FR] Better logging for refused queries. diff --git a/sldns/str2wire.c b/sldns/str2wire.c index 5cfd3c585..3cfff4bde 100644 --- a/sldns/str2wire.c +++ b/sldns/str2wire.c @@ -1127,7 +1127,7 @@ sldns_str2wire_svcparam_key_lookup(const char *key, size_t key_len) if (!strncmp(key, "mandatory", sizeof("mandatory")-1)) return SVCB_KEY_MANDATORY; if (!strncmp(key, "echconfig", sizeof("echconfig")-1)) - return SVCB_KEY_ECH; /* allow "echconfig as well as "ech" */ + return SVCB_KEY_ECH; /* allow "echconfig" as well as "ech" */ break; case sizeof("alpn")-1: -- 2.47.3