Revert "fixed typo" and "fixed crash for Windows"

This reverts commits c8a80a497d and f7791e5289

This didn't actually fix Windows crash problem. In fact, it still
crashed without --log=0 being set. Changes to the i2pd.vcxproj file
fixed the crashes with VS 2013 > update 1.  i2pd now works with VS 2013
Update 3 and Update 4 RC.

Since these changes didn't have the intended effect, let's remove them.
This commit is contained in:
Kill Your TV 2014-11-06 00:54:34 +00:00
parent 3e826cd6dc
commit dd4283b7c1

View file

@ -20,11 +20,8 @@ void LogMsg::Process()
void Log::Flush ()
{
#ifndef _WIN32
if (m_LogFile)
m_LogFile->flush();
#endif
// TODO: find out what's wrong with flush for Windows
}
void Log::SetLogFile (const std::string& fullFilePath)