From: W.C.A. Wijngaards Date: Wed, 2 Feb 2022 12:20:46 +0000 (+0100) Subject: - Fix header comment for doxygen for authextstrtoaddr. X-Git-Tag: release-1.15.0rc1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e656be63f9bb3d4719287c0ed1b66ac224b871c4;p=thirdparty%2Funbound.git - Fix header comment for doxygen for authextstrtoaddr. --- diff --git a/doc/Changelog b/doc/Changelog index ec7b989d7..4bcbbc360 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -10,6 +10,7 @@ 2 February 2022: Wouter - Update version number in repo to 1.15.0 for upcoming release, since it changes the aggressive-nsec default and the ratelimit change. + - Fix header comment for doxygen for authextstrtoaddr. 1 February 2022: George - Merge PR #603 from fobser: Use OpenSSL 1.1 API to access DSA and RSA diff --git a/util/net_help.h b/util/net_help.h index 790036caf..4dd398460 100644 --- a/util/net_help.h +++ b/util/net_help.h @@ -211,7 +211,7 @@ int netblockstrtoaddr(const char* ip, int port, struct sockaddr_storage* addr, * Convert address string, with "@port" appendix, to sockaddr. * It can also have an "#tls-auth-name" appendix (after the port). * The returned auth_name string is a pointer into the input string. - * Uses DNS port by default; TLS port when a '#tls-auth-name' is configured. + * Uses DNS port by default; TLS port when a "#tls-auth-name" is configured. * @param str: the string * @param addr: where to store sockaddr. * @param addrlen: length of stored sockaddr is returned. @@ -225,7 +225,7 @@ int authextstrtoaddr(char* str, struct sockaddr_storage* addr, * Convert domain string, with "@port" appendix, to dname. * It can also have an "#tls-auth-name" appendix (after the port). * The return port is the parsed port. - * Uses DNS port by default; TLS port when a '#tls-auth-name' is configured. + * Uses DNS port by default; TLS port when a "#tls-auth-name" is configured. * The returned auth_name string is a pointer into the input string. * @param str: the string * @param port: pointer to be assigned the parsed port value.