diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-03-26 16:48:39 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-03-26 16:48:39 +0000 |
commit | 5cc3f03d5aab0516358addd949281c2e3fa70688 (patch) | |
tree | 96ae640eaeaadbeebeab641873a8a65ea1e8d743 /core/sessionmanager.lua | |
parent | 13edf3e093fd656d5110b277eca4c9805f3d925c (diff) | |
parent | 51bef3673c57c5a2e323a7eb1424c85498905f53 (diff) | |
download | prosody-5cc3f03d5aab0516358addd949281c2e3fa70688.tar.gz prosody-5cc3f03d5aab0516358addd949281c2e3fa70688.zip |
Merge 0.9->0.10
Diffstat (limited to 'core/sessionmanager.lua')
-rw-r--r-- | core/sessionmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 476de931..8767e869 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -114,7 +114,7 @@ end -- returns nil, err_type, err, err_message on failure function bind_resource(session, resource) if not session.username then return nil, "auth", "not-authorized", "Cannot bind resource before authentication"; end - if session.resource then return nil, "cancel", "already-bound", "Cannot bind multiple resources on a single connection"; end + if session.resource then return nil, "cancel", "not-allowed", "Cannot bind multiple resources on a single connection"; end -- We don't support binding multiple resources local event_payload = { session = session, resource = resource }; |