Add a line return after closing parenthesis in DKIM.

master
Philippe Pittoli 2024-03-13 18:25:28 +01:00
parent e36e408f8e
commit 05fff1b83b
1 changed files with 2 additions and 2 deletions

View File

@ -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