minor fix. Use ':' instead of '=' for SPF mechanisms and modifiers.
This commit is contained in:
parent
be6359d984
commit
21394f7d81
@ -316,7 +316,7 @@ class DNSManager::Storage::Zone
|
||||
end
|
||||
|
||||
def to_bind9(io : IO)
|
||||
io << "#{t.to_s.downcase}=#{v}"
|
||||
io << "#{t.to_s.downcase}:#{v}"
|
||||
end
|
||||
end
|
||||
|
||||
@ -367,7 +367,7 @@ class DNSManager::Storage::Zone
|
||||
end
|
||||
|
||||
io << t.to_s.downcase
|
||||
io << "=#{v}" if v != ""
|
||||
io << ":#{v}" if v != ""
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user