even faster checking for other sessions... thank you waqas :)

This commit is contained in:
Matthew Wild 2008-10-23 17:34:10 +01:00
parent 9e6c3919af
commit 3286f0609f

View file

@ -39,12 +39,7 @@ function destroy_session(session)
if session.resource then
hosts[session.host].sessions[session.username].sessions[session.resource] = nil;
end
local nomore = true;
for res, ssn in pairs(hosts[session.host].sessions[session.username]) do
nomore = false;
break;
end
if nomore then
if not next(hosts[session.host].sessions[session.username], nil) then
hosts[session.host].sessions[session.username] = nil;
end
end