Add a line return after closing parenthesis in DKIM.
This commit is contained in:
parent
e36e408f8e
commit
05fff1b83b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue