summaryrefslogtreecommitdiff
path: root/muxSocket.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-28 20:06:05 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-28 20:06:05 +0000
commit9bb188502ba3e4337996c8d6526669c148b0a5c4 (patch)
tree2dd4e946a0e54ac0a83d91055b3c820171305161 /muxSocket.cpp
parenttestoutput changed (diff)
removed newlines from muxsocket
Diffstat (limited to 'muxSocket.cpp')
-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
}