25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-26 16:26:24 +01:00

Replace jlib:nameprep/1 by exmpp_stringprep:nameprep/1.

PR:		EJABP-1

SVN Revision: 1646
This commit is contained in:
Jean-Sébastien Pédron 2008-10-13 09:37:48 +00:00
parent 4a9892fa15
commit 0211c8145d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-10-13 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/extauth.erl (call_port/2): Replace jlib:nameprep/1 by
exmpp_stringprep:nameprep/1.
2008-10-10 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/ejabberd_c2s.erl (is_auth_packet/1): Fix a bug where

View File

@ -56,7 +56,7 @@ set_password(User, Server, Password) ->
call_port(Server, ["setpass", User, Server, Password]).
call_port(Server, Msg) ->
LServer = jlib:nameprep(Server),
LServer = exmpp_stringprep:nameprep(Server),
gen_mod:get_module_proc(LServer, eauth) ! {call, self(), Msg},
receive
{eauth,Result} ->