diff options
author | Chris Buechler <cmb@pfsense.org> | 2010-08-04 18:04:15 -0400 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2010-08-04 18:04:15 -0400 |
commit | 9662140b414f0e45061822eb1231160d2ac79489 (patch) | |
tree | 23c0e5c11c3fbd0187efa907f23c933c31215fcc /config | |
parent | 988fca4835b1eb4c131e3de69fd0ab34ba7fa2b7 (diff) | |
download | pfsense-packages-9662140b414f0e45061822eb1231160d2ac79489.tar.gz pfsense-packages-9662140b414f0e45061822eb1231160d2ac79489.tar.bz2 pfsense-packages-9662140b414f0e45061822eb1231160d2ac79489.zip |
fix MX priority
Diffstat (limited to 'config')
-rw-r--r-- | config/tinydns/tinydns.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/tinydns/tinydns.inc b/config/tinydns/tinydns.inc index 0659168f..e299cf1c 100644 --- a/config/tinydns/tinydns.inc +++ b/config/tinydns/tinydns.inc @@ -713,7 +713,7 @@ function tinydns_get_rowline_data($recordip, $recordtype, $ttl, $hostname, $rdns // @fqdn:ip:x:dist:ttl:timestamp:lo if(!$dist) $dist = "10"; // default to 10 if no preference has been defined. 0 is ugly. - $record_data = "@{$hostname}:{$recordip}::{$dist}{$ttl_string}"; + $record_data = "@{$hostname}:{$recordip}:{$dist}{$ttl_string}"; break; case "PTR": /* "^" creates "PTR" record only to allow reverse DNS */ |