diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-10-14 00:46:29 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-10-14 00:46:29 +0500 |
commit | a8fc120451d3bc0cef65e8576a2fa2ea8c5d5427 (patch) | |
tree | cc2c9f964813d6a3c6ce318f5021d29edc4855f7 /net/server_select.lua | |
parent | 309533f51398ae7cafd27becca54254998fb9acb (diff) | |
download | prosody-a8fc120451d3bc0cef65e8576a2fa2ea8c5d5427.tar.gz prosody-a8fc120451d3bc0cef65e8576a2fa2ea8c5d5427.zip |
net.server_event, net.server_select: Fixed some global pollution.
Diffstat (limited to 'net/server_select.lua')
-rw-r--r-- | net/server_select.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/server_select.lua b/net/server_select.lua index 65a4f764..412d03c0 100644 --- a/net/server_select.lua +++ b/net/server_select.lua @@ -781,7 +781,7 @@ end local quitting; -setquitting = function (quit) +local function setquitting(quit) quitting = not not quit; end @@ -832,7 +832,7 @@ loop = function(once) -- this is the main loop of the program return "quitting" end -step = function () +local function step() return loop(true); end |