Changeset

994:8fd4efc3ed96

net.server: Remove some debug code which slipped through
author Matthew Wild <mwild1@gmail.com>
date Sun, 12 Apr 2009 03:06:22 +0100
parents 993:b2e9456dc200
children 995:a007d85b4045
files net/server.lua
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 ]