Remove warning about %e and %T

This commit is contained in:
Andy Cedilnik 2003-01-17 08:56:20 -05:00
parent dccfef740d
commit 293c9d40b4
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ static std::string CurrentTime()
struct tm* t = localtime(&currenttime);
//return ::CleanString(ctime(&currenttime));
char current_time[1024];
strftime(current_time, 1000, "%a %b %e %T %Z %Y", t);
strftime(current_time, 1000, "%a %b %d %H:%M:%S %Z %Y", t);
//std::cout << "Current_Time: " << current_time << std::endl;
return ::CleanString(current_time);
}