diff options
Diffstat (limited to 'lib/LuaCommandLine.cc')
-rw-r--r-- | lib/LuaCommandLine.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/LuaCommandLine.cc b/lib/LuaCommandLine.cc index 0803e27..68f8763 100644 --- a/lib/LuaCommandLine.cc +++ b/lib/LuaCommandLine.cc @@ -38,7 +38,7 @@ class CommandLineSpawn : public Task { CommandLineSpawn(Lua * _L, const Socket & _s) : L(_L), s(_s) { SetBurst(); p = new LuaCommandLinePrinter(this); - b << "Lua Command Line - Ready to serve.\n"; + b << "Lua Command Line - Ready to serve.\r\n"; nL = L->thread(1); L->pop(); nL->SetPrinter(p); @@ -47,7 +47,7 @@ class CommandLineSpawn : public Task { delete p; } void puts(const char * msg) { - b << msg; + b << msg << "\r\n"; } virtual String GetName() { return "Command Line Spawn"; |