From 9bb188502ba3e4337996c8d6526669c148b0a5c4 Mon Sep 17 00:00:00 2001 From: Othmar Gsenger Date: Thu, 28 Feb 2008 20:06:05 +0000 Subject: removed newlines from muxsocket --- muxSocket.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'muxSocket.cpp') 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 } -- cgit v1.2.3