mod_s2s_auth_dane/mod_s2s_auth_dane.lua
changeset 1409 151aa00559d1
parent 1396 cf4e39334ef7
child 1410 f4e497a53c6e
--- a/mod_s2s_auth_dane/mod_s2s_auth_dane.lua	Wed May 07 16:18:05 2014 +0200
+++ b/mod_s2s_auth_dane/mod_s2s_auth_dane.lua	Wed May 07 17:07:10 2014 +0200
@@ -84,7 +84,7 @@
 		if not ( srv_hosts and srv_hosts.answer and srv_hosts.answer.secure )  then return end
 		local srv_choice = srv_hosts[host_session.srv_choice];
 		host_session.dane = dns_lookup(function(answer)
-			if answer and (answer.secure and #answer > 0) or answer.bogus then
+			if answer and ((answer.secure and #answer > 0) or answer.bogus) then
 				srv_choice.dane = answer;
 			else
 				srv_choice.dane = false;