mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-27 00:19:25 -05:00
Fix ctime(&rstime_t) error on windows
rstime_t not neccesary in those cases so use plain time_t instead
This commit is contained in:
parent
77d938bf52
commit
ddf3164545
@ -1101,7 +1101,7 @@ int p3BitDht::tick()
|
||||
minuteTick();
|
||||
|
||||
#ifdef DEBUG_PEERNET_COMMON
|
||||
rstime_t now = time(NULL);
|
||||
time_t now = time(NULL); // Don't use rstime_t here or ctime break on windows
|
||||
std::cerr << "p3BitDht::tick() TIME: " << ctime(&now) << std::endl;
|
||||
std::cerr.flush();
|
||||
#endif
|
||||
|
@ -55,7 +55,7 @@ void DisplayInfos(struct UPNPUrls * urls,
|
||||
char lastconnerr[64];
|
||||
unsigned int uptime;
|
||||
unsigned int brUp, brDown;
|
||||
rstime_t timenow, timestarted;
|
||||
time_t timenow, timestarted; // Don't use rstime_t here or ctime break on windows
|
||||
int r;
|
||||
#if MINIUPNPC_API_VERSION >= -2//1.4 2010/12/09
|
||||
const char * servicetype = data->first.servicetype;
|
||||
|
@ -148,7 +148,7 @@ void rslog(const RsLog::logLvl lvl, RsLog::logInfo *info, const std::string &msg
|
||||
|
||||
{
|
||||
RS_STACK_MUTEX(logMtx);
|
||||
rstime_t t = time(NULL);
|
||||
time_t t = time(NULL); // Don't use rstime_t here or ctime break on windows
|
||||
|
||||
if (debugMode == RS_DEBUG_LOGCRASH)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user