mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +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
|
||||
exmpp_stringprep.
|
||||
|
||||
* src/ejabberd_auth_odbc.erl (check_password): Fix a typo in the
|
||||
exmpp_stringprep module name.
|
||||
* src/ejabberd_auth_odbc.erl (check_password), src/mod_roster.erl
|
||||
(remove_user): Fix a typo in the exmpp_stringprep module name.
|
||||
|
||||
* src/ejabberd_c2s.erl: Fix a misuse of exmpp_stanza:error/2: the
|
||||
namespace argument (the first one) was missing.
|
||||
|
@ -553,7 +553,7 @@ in_auto_reply(_, _, _) -> none.
|
||||
|
||||
remove_user(User, Server) ->
|
||||
try
|
||||
LUser = exmpp_stringpre:nodeprep(User),
|
||||
LUser = exmpp_stringprep:nodeprep(User),
|
||||
LServer = exmpp_stringprep:nameprep(Server),
|
||||
US = {LUser, LServer},
|
||||
F = fun() ->
|
||||
|
Loading…
Reference in New Issue
Block a user