Diff

net/server.lua @ 1863:51b1612325e6

net.server: Fix missing concatenation operator in error message
author Matthew Wild <mwild1@gmail.com>
date Fri, 02 Oct 2009 21:20:53 +0100
parent 1804:f0f5ff6f82d6
child 1865:388b125b784a
child 1952:4a15b176fca8
line wrap: on
line diff
--- a/net/server.lua	Fri Oct 02 17:14:54 2009 +0500
+++ b/net/server.lua	Fri Oct 02 21:20:53 2009 +0100
@@ -720,7 +720,7 @@
 removeserver = function( port )
     local handler = _server[ port ]
     if not handler then
-        return nil, "no server found on port '" .. tostring( port ) "'"
+        return nil, "no server found on port '" .. tostring( port ) .. "'"
     end
     handler.close( )
     _server[ port ] = nil