- updated win32 vc++ files to compile with new ftp server / client

This commit is contained in:
Mark Vejvoda
2010-12-29 16:28:46 +00:00
parent d7520dc40b
commit 89a6ae3fe4
6 changed files with 60 additions and 10 deletions

View File

@@ -283,7 +283,7 @@ void LogFileThread::saveToDisk(bool forceSaveAll,bool logListAlreadyLocked) {
// logCount = min(logCount,(std::size_t)2000000);
//}
for(int i = 0; i < logCount; ++i) {
for(unsigned int i = 0; i < logCount; ++i) {
LogFileEntry &entry = tempLogList[i];
SystemFlags::logDebugEntry(entry.type, entry.entry, entry.entryDateTime);
}

View File

@@ -397,7 +397,7 @@ std::vector<string> IRCThread::GetIRCConnectedNickList(string target, bool waitF
bool IRCThread::isConnected() {
bool ret = false;
if(ircSession != NULL) {
ret = irc_is_connected(ircSession);
ret = (irc_is_connected(ircSession) != 0);
}
return ret;