We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faed957 commit 089c737Copy full SHA for 089c737
lib/net/ldap.rb
@@ -1089,7 +1089,7 @@ def bind auth
1089
#
1090
def search args = {}
1091
search_filter = (args && args[:filter]) || Filter.eq( "objectclass", "*" )
1092
- #search_filter = Filter.construct(search_filter) if search_filter.is_a?(String)
+ search_filter = Filter.construct(search_filter) if search_filter.is_a?(String)
1093
search_base = (args && args[:base]) || "dc=example,dc=com"
1094
search_attributes = ((args && args[:attributes]) || []).map {|attr| attr.to_s.to_ber}
1095
return_referrals = args && args[:return_referrals] == true
0 commit comments