X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Firc.cpp;h=b594529846ec81e68e14d421976afcaf7e724edf;hb=32b53bb54ee7591fd47dd1ee24e05b73337f40b5;hp=03bc607a9134c952673a8ae9802d76013ad17413;hpb=f8705e8bdeb66c966ba23e9705ca696ca427c80b;p=novacoin.git diff --git a/src/irc.cpp b/src/irc.cpp index 03bc607..b594529 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -75,7 +75,7 @@ static bool Send(SOCKET hSocket, const char* pszSend) bool RecvLineIRC(SOCKET hSocket, string& strLine) { - while (true) + for ( ; ; ) { bool fRet = RecvLine(hSocket, strLine); if (fRet) @@ -98,7 +98,7 @@ bool RecvLineIRC(SOCKET hSocket, string& strLine) int RecvUntil(SOCKET hSocket, const char* psz1, const char* psz2=NULL, const char* psz3=NULL, const char* psz4=NULL) { - while (true) + for ( ; ; ) { string strLine; strLine.reserve(10000); @@ -133,7 +133,7 @@ bool Wait(int nSeconds) bool RecvCodeLine(SOCKET hSocket, const char* psz1, string& strRet) { strRet.clear(); - while (true) + for ( ; ; ) { string strLine; if (!RecvLineIRC(hSocket, strLine)) @@ -333,7 +333,7 @@ void ThreadIRCSeed2(void* parg) { // index 7 is limited to 16 characters // could get full length name at index 10, but would be different from join messages - strName = vWords[7].c_str(); + strName = vWords[7]; printf("IRC got who\n"); }