]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix RFC292 -> RFC952 typo
authorOndřej Surý <ondrej@isc.org>
Tue, 4 May 2021 15:21:52 +0000 (17:21 +0200)
committerOndřej Surý <ondrej@isc.org>
Tue, 4 May 2021 15:21:52 +0000 (17:21 +0200)
lib/dns/name.c

index 42ed549a1140eb129edf1462fe3238e987d90ac7..dc7f62b1f11876d91c7ea8fb7fd443867fb3c292 100644 (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++;