summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-06-21 12:55:03 +0000
committerTed Trask <ttrask01@yahoo.com>2012-06-21 12:55:03 +0000
commit261e51a6d59ac9252f3f98f7dd68500ca2db3e6a (patch)
tree4bbe4d301e3b0c9d39a0ee253f3e9725cdf09bf9
parent343fa1708bb81d80e7b2c9f3e3d2b33273162b23 (diff)
downloadacf-tinydns-261e51a6d59ac9252f3f98f7dd68500ca2db3e6a.tar.bz2
acf-tinydns-261e51a6d59ac9252f3f98f7dd68500ca2db3e6a.tar.xz
Fixed bug with SRV records having Priority and Weight swapped
-rw-r--r--tinydns-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinydns-model.lua b/tinydns-model.lua
index 82c2934..50fafa3 100644
--- a/tinydns-model.lua
+++ b/tinydns-model.lua
@@ -44,7 +44,7 @@ local descr = {
['Z']={"Domain", "Primary name server", "Contact address", "Serial number", "Refresh time", "Retry time", "Expire time", "Minimum time", "Time to live", "Timestamp", "Location",},
[':']={"Domain", "Record type", "Record data", "Time to live", "Timestamp", "Location", },
['%']={"Location", "IP prefix", },
- ['S']={"Domain Service", "IP address", "Server", "Port", "Weight", "Priority", "Time to live", "Timestamp", },
+ ['S']={"Domain Service", "IP address", "Server", "Port", "Priority", "Weight", "Time to live", "Timestamp", },
['N']={"Domain", "Order", "Preference", "Flags", "Service", "Regular expression", "Replacement", "Time to live", "Timestamp", },
},
}