Skip to content

Commit

Permalink
Merge pull request #5341 from shantikulkarni/rel/auth-4.0.x
Browse files Browse the repository at this point in the history
Fix typo in ldapbackend.cc from issue #5091
  • Loading branch information
pieterlexis committed May 25, 2017
2 parents d12ddcd + 6fd8906 commit b5aba23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ldapbackend/ldapbackend.cc
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ inline bool LdapBackend::list_simple( const DNSName& target, int domain_id )

inline bool LdapBackend::list_strict( const DNSName& target, int domain_id )
{
if( target.isPartOf(DNSName("in-addr.arpa")) || target.isPartOf(DNSName(".ip6.arpa")) )
if( target.isPartOf(DNSName("in-addr.arpa")) || target.isPartOf(DNSName("ip6.arpa")) )
{
L << Logger::Warning << m_myname << " Request for reverse zone AXFR, but this is not supported in strict mode" << endl;
return false; // AXFR isn't supported in strict mode. Use simple mode and additional PTR records
Expand Down

0 comments on commit b5aba23

Please sign in to comment.