minor fix. Use ':' instead of '=' for SPF mechanisms and modifiers.

master
Philippe Pittoli 2024-03-06 00:20:15 +01:00
parent be6359d984
commit 21394f7d81
1 changed files with 2 additions and 2 deletions

View File

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