diff options
Diffstat (limited to 'muxSocket.cpp')
-rw-r--r-- | muxSocket.cpp | 3 |
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 } |