Bugfix. Net::LDAP#bind was ignoring the inbound auth parameter.
Thanks to Kouhei Sutou for spotting this and pointing it out.
This commit is contained in:
parent
1b568e82df
commit
64a8240ae0
2 changed files with 3 additions and 2 deletions
|
@ -727,7 +727,7 @@ module Net
|
|||
@result = @open_connection.bind auth
|
||||
else
|
||||
conn = Connection.new( :host => @host, :port => @port , :encryption => @encryption)
|
||||
@result = conn.bind @auth
|
||||
@result = conn.bind auth
|
||||
conn.close
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue