diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-10-02 21:20:53 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-10-02 21:20:53 +0100 |
commit | 1d9d763906b33bcdbb07837a533cab08a524c70b (patch) | |
tree | 78291c25270069e999c0b3bd75eb62a88b5b1b23 | |
parent | 727cc275bba229332912af42fe0e55524d73efdb (diff) | |
download | prosody-1d9d763906b33bcdbb07837a533cab08a524c70b.tar.gz prosody-1d9d763906b33bcdbb07837a533cab08a524c70b.zip |
net.server: Fix missing concatenation operator in error message
-rw-r--r-- | net/server.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server.lua b/net/server.lua index 971ea553..a6c57e41 100644 --- a/net/server.lua +++ b/net/server.lua @@ -720,7 +720,7 @@ end 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
|