diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-06-05 23:55:16 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-06-05 23:55:16 +0100 |
commit | 7fd9641a7de646f0c15a878a53f2b744a3af6e89 (patch) | |
tree | c454461d97b3eb998a8df8ba5dc9ced6ef733980 /core/s2smanager.lua | |
parent | 9d44849d560e0d0412544be87ede45f69b44ef37 (diff) | |
download | prosody-7fd9641a7de646f0c15a878a53f2b744a3af6e89.tar.gz prosody-7fd9641a7de646f0c15a878a53f2b744a3af6e89.zip |
s2smanager: Fix letter case in log message (thanks darkrain)
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index f49fae9d..c87540e4 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -440,7 +440,7 @@ function streamopened(session, attr) session.from_host = attr.from and nameprep(attr.from); session.streamid = uuid_gen(); - (session.log or log)("debug", "incoming s2s received <stream:stream>"); + (session.log or log)("debug", "Incoming s2s received <stream:stream>"); if session.to_host then if not hosts[session.to_host] then -- Attempting to connect to a host we don't serve |