net.server: Remove some debug code which slipped through
authorMatthew Wild <mwild1@gmail.com>
Sun, 12 Apr 2009 03:06:22 +0100
changeset 994 8fd4efc3ed96
parent 993 b2e9456dc200
child 995 a007d85b4045
net.server: Remove some debug code which slipped through
net/server.lua
--- a/net/server.lua	Sun Apr 12 03:02:51 2009 +0100
+++ b/net/server.lua	Sun Apr 12 03:06:22 2009 +0100
@@ -733,7 +733,6 @@
 
 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 ]