2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Fix RFC292 -> RFC952 typo

This commit is contained in:
Ondřej Surý 2021-05-04 17:21:52 +02:00
parent 38a422ed81
commit d2dba352cb

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)) { while (ndata < (name->ndata + name->length)) {
n = *ndata++; 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)) { while (ndata < (name->ndata + name->length)) {
n = *ndata++; n = *ndata++;