From 5b727dc78491f8a91f2188c6aa3d78f71beb5e5b Mon Sep 17 00:00:00 2001 From: zolliker Date: Thu, 7 Dec 2006 10:05:43 +0000 Subject: [PATCH] - undo a modification in doSockWrite (terminator only CR, not CR/LF) --- conman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conman.c b/conman.c index 39d6827f..3f4378b1 100644 --- a/conman.c +++ b/conman.c @@ -634,7 +634,7 @@ static int doSockWrite(SConnection *self, char *buffer) iRet = NETWrite(self->pSock,buffer,strlen(buffer)); if(!HasNL(buffer)) { - iRet = NETWrite(self->pSock,"\r\n",strlen("\r\n")); + iRet = NETWrite(self->pSock,"\n",strlen("\n")); } } if(!iRet)