File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ class LdapError < StandardError; end
258258 DerefAliases_Find = 2
259259 DerefAliases_Always = 3
260260 DerefAliasesArray = [ DerefAliases_Never , DerefAliases_Search , DerefAliases_Find , DerefAliases_Always ]
261-
261+
262262 primitive = { 2 => :null } # UnbindRequest body
263263 constructed = {
264264 0 => :array , # BindRequest
@@ -1139,7 +1139,7 @@ def search_subschema_entry
11391139 def paged_searches_supported?
11401140 # active directory returns that it supports paged results. However
11411141 # it returns binary data in the rfc2696_cookie which throws an
1142- # encoding exception breaking searching.
1142+ # encoding exception breaking searching.
11431143 return false if @force_no_page
11441144 @server_caps ||= search_root_dse
11451145 @server_caps [ :supportedcontrol ] . include? ( Net ::LDAP ::LDAPControls ::PAGED_RESULTS )
@@ -1454,7 +1454,7 @@ def search(args = {})
14541454 deref = args [ :deref ] || Net ::LDAP ::DerefAliases_Never
14551455 raise Net ::LDAP ::LdapError . new ( "invalid alias dereferencing value" ) unless Net ::LDAP ::DerefAliasesArray . include? ( deref )
14561456
1457-
1457+
14581458 # An interesting value for the size limit would be close to A/D's
14591459 # built-in page limit of 1000 records, but openLDAP newer than version
14601460 # 2.2.0 chokes on anything bigger than 126. You get a silent error that
You can’t perform that action at this time.
0 commit comments