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 27885ff commit bb18fc6Copy full SHA for bb18fc6
lib/net/ldap.rb
@@ -1194,9 +1194,15 @@ def delete_tree(args)
1194
def search_root_dse
1195
rs = search(:ignore_server_caps => true, :base => "",
1196
:scope => SearchScope_BaseObject,
1197
- :attributes => [ :namingContexts, :supportedLdapVersion,
1198
- :altServer, :supportedControl, :supportedExtension,
1199
- :supportedFeatures, :supportedSASLMechanisms])
+ :attributes => [
+ :altServer,
+ :namingContexts,
1200
+ :supportedControl,
1201
+ :supportedExtension,
1202
+ :supportedFeatures,
1203
+ :supportedLdapVersion,
1204
+ :supportedSASLMechanisms
1205
+ ])
1206
(rs and rs.first) or Net::LDAP::Entry.new
1207
end
1208
0 commit comments