]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix header comment for doxygen for authextstrtoaddr.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 2 Feb 2022 12:20:46 +0000 (13:20 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 2 Feb 2022 12:20:46 +0000 (13:20 +0100)
doc/Changelog
util/net_help.h

index ec7b989d77792a31b460d6204b015132d9f455b6..4bcbbc360bc2699f1fb57aa75ed893e7edf36a5f 100644 (file)
@@ -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
index 790036caf78c696c2aa0c1a75b41d193436fb4a8..4dd398460294474460c4446060b7b8dc117b594b 100644 (file)
@@ -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.