summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--muxSocket.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/muxSocket.cpp b/muxSocket.cpp
index 629ec45..ac49415 100644
--- a/muxSocket.cpp
+++ b/muxSocket.cpp
@@ -29,11 +29,10 @@ void MuxSocket::OnAccept()
while( !file.eof() )
{
getline( file, line );
- Send( line + "\n" );
+ Send( line );
}
file.close();
}
- Send("\n");
//TODO Locking here
}