fix small typo when logging

This commit is contained in:
ps 2011-01-08 02:02:51 +00:00
parent 1c5b70b2a6
commit 98989ab0b8
1 changed files with 1 additions and 1 deletions

View File

@ -300,9 +300,9 @@ void Socket::writeByte(char c)
void Socket::writeLine(string s)
{
LDEB("w>"+s);
s+="\r\n";
LDEB("w>"+s);
writeBytes((void *)s.c_str(),s.length());
}