Merge branch '2675-wrong-rfc-reference-in-name-c' into 'main'

Fix RFC292 -> RFC952 typo

Closes #2675

See merge request isc-projects/bind9!4990
This commit is contained in:
Ondřej Surý 2021-05-04 15:22:49 +00:00
commit 74d9a917eb

View file

@ -317,7 +317,7 @@ dns_name_ismailbox(const dns_name_t *name) {
}
/*
* RFC292/RFC1123 hostname.
* RFC952/RFC1123 hostname.
*/
while (ndata < (name->ndata + name->length)) {
n = *ndata++;
@ -366,7 +366,7 @@ dns_name_ishostname(const dns_name_t *name, bool wildcard) {
}
/*
* RFC292/RFC1123 hostname.
* RFC952/RFC1123 hostname.
*/
while (ndata < (name->ndata + name->length)) {
n = *ndata++;