]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
minor #1344 change rfc reference for reserved top level dns names 147/head
authorMikhail Nacharov <author@webnach.ru>
Tue, 21 Jan 2020 12:13:50 +0000 (17:13 +0500)
committerMikhail Nacharov <author@webnach.ru>
Mon, 27 Jan 2020 17:04:09 +0000 (22:04 +0500)
doc/unbound.conf.5.in
services/localzone.c

index a4d925499cf3c8556ce72bc640c85339b1844bf5..6292f0d4d5854830246ac8f5071a13c01999a89e 100644 (file)
@@ -1296,7 +1296,7 @@ local\-data: "onion. 10800 IN
     SOA localhost. nobody.invalid. 1 3600 1200 604800 10800"
 .fi
 .TP 10
-\h'5'\fItest (RFC 2606)\fR
+\h'5'\fItest (RFC 6761)\fR
 Default content:
 .nf
 local\-zone: "test." static
@@ -1305,7 +1305,7 @@ local\-data: "test. 10800 IN
     SOA localhost. nobody.invalid. 1 3600 1200 604800 10800"
 .fi
 .TP 10
-\h'5'\fIinvalid (RFC 2606)\fR
+\h'5'\fIinvalid (RFC 6761)\fR
 Default content:
 .nf
 local\-zone: "invalid." static
index 492bb83042c1f9f49d4fb0d5f1c6ebe4f68d28fb..a0faf7d2acc77c095cb10a23d0be744ce521bf97 100644 (file)
@@ -823,12 +823,12 @@ int local_zone_enter_defaults(struct local_zones* zones, struct config_file* cfg
                log_err("out of memory adding default zone");
                return 0;
        }
-       /* test. zone (RFC 7686) */
+       /* test. zone (RFC 6761) */
        if(!add_empty_default(zones, cfg, "test.")) {
                log_err("out of memory adding default zone");
                return 0;
        }
-       /* invalid. zone (RFC 7686) */
+       /* invalid. zone (RFC 6761) */
        if(!add_empty_default(zones, cfg, "invalid.")) {
                log_err("out of memory adding default zone");
                return 0;