diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-04-03 19:31:05 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-04-03 19:31:05 +0100 |
commit | 1930dee18906f9fff6cf667b6593ce53eb639e8d (patch) | |
tree | bc14a110c47d84f01b5f7bf7092ec4b236aa8a04 /core/sessionmanager.lua | |
parent | a3105396ae8189682111130bf5c0e150c38d755d (diff) | |
download | prosody-1930dee18906f9fff6cf667b6593ce53eb639e8d.tar.gz prosody-1930dee18906f9fff6cf667b6593ce53eb639e8d.zip |
sessionmanager: Rename parameter to avoid varible name conflict
Diffstat (limited to 'core/sessionmanager.lua')
-rw-r--r-- | core/sessionmanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 8767e869..d833dbe5 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -193,8 +193,8 @@ function bind_resource(session, resource) return true; end -function send_to_available_resources(user, host, stanza) - local jid = user.."@"..host; +function send_to_available_resources(username, host, stanza) + local jid = username.."@"..host; local count = 0; local user = bare_sessions[jid]; if user then |