1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Revert "tests: use put_time"

This reverts commit b4af2571db.
std::put_time is a relatively new feature so breaks builds on older
systems.
This commit is contained in:
Zdenek Kabelac 2024-08-09 15:37:59 +02:00
parent 2dc6c3d236
commit 9036862357

View File

@ -319,9 +319,12 @@ struct Journal {
of << ru->second; of << ru->second;
else { else {
struct tm time_info; struct tm time_info;
char buf[64];
time_t t = time( 0 ); time_t t = time( 0 );
if (localtime_r(&t, &time_info)) if (localtime_r(&t, &time_info)) {
of << "--- " << std::put_time( &time_info, "%F %T" ) << " ---"; strftime(buf, sizeof(buf), "%F %T", &time_info);
of << "--- " << buf << " ---";
}
} }
of << std::endl; of << std::endl;
} }