From 05fff1b83b9632fa5b524db385a7bebf0ad4c62c Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Wed, 13 Mar 2024 18:25:28 +0100 Subject: [PATCH] Add a line return after closing parenthesis in DKIM. --- src/storage/zone.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/zone.cr b/src/storage/zone.cr index a9477f2..ff6d3fd 100644 --- a/src/storage/zone.cr +++ b/src/storage/zone.cr @@ -508,14 +508,14 @@ class DNSManager::Storage::Zone io << "#{ "%30s" % @name} #{ "%6d" % @ttl} DKIM " io << "( " io << split_line dkim.to_s - io << " )" + io << " )\n" end def to_bind9(io : IO) io << "#{@name} #{@ttl} IN TXT " io << "( " io << split_line dkim.to_s - io << " )" + io << " )\n" end end