aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-03-29 22:45:54 +0100
committerKim Alvefur <zash@zash.se>2019-03-29 22:45:54 +0100
commitcc28a5eb1232228097d229ea21a187f4ebf190cc (patch)
tree1ed7b8a90399983d08baf89b7dad81f06d57a3fc
parentaa2c9c178ec5f78aaadcf2eeb67612dd0980355f (diff)
downloadprosody-cc28a5eb1232228097d229ea21a187f4ebf190cc.tar.gz
prosody-cc28a5eb1232228097d229ea21a187f4ebf190cc.zip
core.s2smanager: Rename variable to be same in two functions
-rw-r--r--core/s2smanager.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 0ba5e7c6..fbe0458b 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -26,10 +26,10 @@ local _ENV = nil;
-- luacheck: std none
local function new_incoming(conn)
- local session = { conn = conn, type = "s2sin_unauthed", direction = "incoming", hosts = {} };
- session.log = logger_init("s2sin"..tostring(session):match("[a-f0-9]+$"));
- incoming_s2s[session] = true;
- return session;
+ local host_session = { conn = conn, type = "s2sin_unauthed", direction = "incoming", hosts = {} };
+ host_session.log = logger_init("s2sin"..tostring(host_session):match("[a-f0-9]+$"));
+ incoming_s2s[host_session] = true;
+ return host_session;
end
local function new_outgoing(from_host, to_host)