mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Fix a typo in the exmpp_stringprep module name.
SVN Revision: 1573
This commit is contained in:
parent
0dbbf53fbe
commit
44c77364ce
@ -5,8 +5,8 @@
|
|||||||
(remove_user): Fix a bug where the exmpp_jid module was use instead of
|
(remove_user): Fix a bug where the exmpp_jid module was use instead of
|
||||||
exmpp_stringprep.
|
exmpp_stringprep.
|
||||||
|
|
||||||
* src/ejabberd_auth_odbc.erl (check_password): Fix a typo in the
|
* src/ejabberd_auth_odbc.erl (check_password), src/mod_roster.erl
|
||||||
exmpp_stringprep module name.
|
(remove_user): Fix a typo in the exmpp_stringprep module name.
|
||||||
|
|
||||||
* src/ejabberd_c2s.erl: Fix a misuse of exmpp_stanza:error/2: the
|
* src/ejabberd_c2s.erl: Fix a misuse of exmpp_stanza:error/2: the
|
||||||
namespace argument (the first one) was missing.
|
namespace argument (the first one) was missing.
|
||||||
|
@ -553,7 +553,7 @@ in_auto_reply(_, _, _) -> none.
|
|||||||
|
|
||||||
remove_user(User, Server) ->
|
remove_user(User, Server) ->
|
||||||
try
|
try
|
||||||
LUser = exmpp_stringpre:nodeprep(User),
|
LUser = exmpp_stringprep:nodeprep(User),
|
||||||
LServer = exmpp_stringprep:nameprep(Server),
|
LServer = exmpp_stringprep:nameprep(Server),
|
||||||
US = {LUser, LServer},
|
US = {LUser, LServer},
|
||||||
F = fun() ->
|
F = fun() ->
|
||||||
|
Loading…
Reference in New Issue
Block a user