Commit a8ac8b25 authored by Max Kellermann's avatar Max Kellermann

TimePrint: remove unused time_t overload

parent 78a65cf2
...@@ -22,13 +22,15 @@ ...@@ -22,13 +22,15 @@
#include "client/Response.hxx" #include "client/Response.hxx"
void void
time_print(Response &r, const char *name, time_t t) time_print(Response &r, const char *name,
std::chrono::system_clock::time_point t)
{ {
time_t t2 = std::chrono::system_clock::to_time_t(t);
#ifdef _WIN32 #ifdef _WIN32
const struct tm *tm2 = gmtime(&t); const struct tm *tm2 = gmtime(&t2);
#else #else
struct tm tm; struct tm tm;
const struct tm *tm2 = gmtime_r(&t, &tm); const struct tm *tm2 = gmtime_r(&t2, &tm);
#endif #endif
if (tm2 == nullptr) if (tm2 == nullptr)
return; return;
......
...@@ -30,13 +30,7 @@ class Response; ...@@ -30,13 +30,7 @@ class Response;
* Write a line with a time stamp to the client. * Write a line with a time stamp to the client.
*/ */
void void
time_print(Response &r, const char *name, time_t t);
inline void
time_print(Response &r, const char *name, time_print(Response &r, const char *name,
std::chrono::system_clock::time_point t) std::chrono::system_clock::time_point t);
{
time_print(r, name, std::chrono::system_clock::to_time_t(t));
}
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment