diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2013-12-12 11:01:39 -0200 |
---|---|---|
committer | Marcello Coutinho <marcellocoutinho@gmail.com> | 2013-12-12 11:01:39 -0200 |
commit | 419fe8a7818856bcc6badb4e8d601f0e01f31f5c (patch) | |
tree | a8f5d7e1037f0d17651a6777c7b6e4d1133edf65 | |
parent | 8a4621720b54cc92575e9021ca31bc7ef88f7272 (diff) | |
download | pfsense-packages-419fe8a7818856bcc6badb4e8d601f0e01f31f5c.tar.gz pfsense-packages-419fe8a7818856bcc6badb4e8d601f0e01f31f5c.tar.bz2 pfsense-packages-419fe8a7818856bcc6badb4e8d601f0e01f31f5c.zip |
bind - fix final . check for ipv6 addresses.
-rw-r--r-- | config/bind/bind.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/bind/bind.inc b/config/bind/bind.inc index 146632c9..8f439d1a 100644 --- a/config/bind/bind.inc +++ b/config/bind/bind.inc @@ -432,7 +432,7 @@ EOD; $hostname = (preg_match("/(MX|NS)/",$zone['row'][$y]['hosttype'])?"@":$zone['row'][$y]['hostname']); $hosttype = $zone['row'][$y]['hosttype']; $hostdst = $zone['row'][$y]['hostdst']; - if (preg_match("/[a-zA-Z]/",$hostdst) && !preg_match("/(TXT|SPF)/",$hosttype)) + if (preg_match("/[a-zA-Z]/",$hostdst) && !preg_match("/(TXT|SPF|AAAA)/",$hosttype)) $hostdst .= "."; $hostvalue = $zone['row'][$y]['hostvalue']; |