diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-12 03:06:22 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-12 03:06:22 +0100 |
commit | cdd063f51696f7bcb39c83d04e159f58595d1790 (patch) | |
tree | 31b145fca6393b422b0cbae31bc15ccb580b4667 | |
parent | fcd300734f1d94c6a1e2fd11d126ff58d0313c75 (diff) | |
download | prosody-cdd063f51696f7bcb39c83d04e159f58595d1790.tar.gz prosody-cdd063f51696f7bcb39c83d04e159f58595d1790.zip |
net.server: Remove some debug code which slipped through
-rw-r--r-- | net/server.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/server.lua b/net/server.lua index d151e61d..aa259c7d 100644 --- a/net/server.lua +++ b/net/server.lua @@ -733,7 +733,6 @@ end loop = function( ) -- this is the main loop of the program
while dontstop do
- out_put(tostring(dontstop))
local read, write, err = socket_select( _readlist, _sendlist, _selecttimeout )
for i, socket in ipairs( write ) do -- send data waiting in writequeues
local handler = _socketlist[ socket ]
|