Fix auth verification in ejabberd_xmlrpc (thanks to Vicis)

This commit is contained in:
Badlop 2014-01-02 16:10:19 +01:00
parent 27302fb7ac
commit e107e78773
1 changed files with 3 additions and 1 deletions

View File

@ -345,8 +345,10 @@ build_fault_response(Code, ParseString, ParseArgs) ->
do_command(AccessCommands, Auth, Command, AttrL, ArgsF,
ResultF) ->
ArgsFormatted = format_args(AttrL, ArgsF),
{UserT, ServerT, PasswordT} = Auth,
AuthBin = {list_to_binary(UserT), list_to_binary(ServerT), list_to_binary(PasswordT)},
Result =
ejabberd_commands:execute_command(AccessCommands, Auth,
ejabberd_commands:execute_command(AccessCommands, AuthBin,
Command, ArgsFormatted),
ResultFormatted = format_result(Result, ResultF),
{command_result, ResultFormatted}.