From 97e8a8ac9ae2bc3fcb2ebfb975dae881529c0053 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 6 May 2024 11:21:39 +0200 Subject: [PATCH] rec: fix two doc examples missing a colon fixes #14119 --- pdns/recursordist/settings/docs-new-preamble-in.rst | 2 +- pdns/recursordist/settings/table.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/settings/docs-new-preamble-in.rst b/pdns/recursordist/settings/docs-new-preamble-in.rst index a99eb57242..9783ca50c7 100644 --- a/pdns/recursordist/settings/docs-new-preamble-in.rst +++ b/pdns/recursordist/settings/docs-new-preamble-in.rst @@ -161,7 +161,7 @@ An example of a ``forward_zones`` entry, which consists of a sequence of forward forwarders: - 127.0.0.1 - 127.0.0.1:5353 - - '[::1]53' + - '[::1]:53' - zone: example2.com forwarders: - '::1' diff --git a/pdns/recursordist/settings/table.py b/pdns/recursordist/settings/table.py index da34538168..bb0973ca41 100644 --- a/pdns/recursordist/settings/table.py +++ b/pdns/recursordist/settings/table.py @@ -1107,7 +1107,7 @@ The DNSSEC notes from :ref:`setting-forward-zones` apply here as well. forwarders: - 127.0.0.1 - 127.0.0.1:5353 - - '[::1]53' + - '[::1]:53' - zone: example2.com forwarders: - ::1 -- 2.47.2