* src/eldap/eldap.erl: Bugfix (thanks to Evgeniy Khramtsov)

SVN Revision: 865
This commit is contained in:
Mickaël Rémond 2007-08-09 14:55:53 +00:00
parent 907e421f89
commit 485518e0d3
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,5 @@
2007-06-29 Mickael Remond <mickael.remond@process-one.net>
* src/ejabberd_config.erl: Normalize hostnames in config file. If mixed
@ -13,6 +15,10 @@
* doc/release_notes_1.1.3.txt: Creation.
* src/mod_roster_odbc.erl: Security bugfix.
2006-11-23 Alexey Shchepin <alexey@sevcom.net>
* src/eldap/eldap.erl: Bugfix (thanks to Evgeniy Khramtsov)
2006-09-27 Mickael Remond <mickael.remond@process-one.net>
* doc/release_notes_1.1.2.txt: Minor fixes.

View File

@ -713,7 +713,7 @@ recvd_wait_bind_response(Pkt, S) ->
check_id(S#eldap.id, Msg#'LDAPMessage'.messageID),
case Msg#'LDAPMessage'.protocolOp of
{bindResponse, Result} ->
case Result#'LDAPResult'.resultCode of
case Result#'BindResponse'.resultCode of
success -> bound;
Error -> {fail_bind, Error}
end