From: Craig Robbins Date: Tue, 24 Mar 2015 16:29:24 +0000 (+1000) Subject: Update timestamp to include date X-Git-Tag: 0.4.13~434 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2641fcc4bb9c3fae58e28a2b73921dd1fb419d8a;p=oweals%2Fminetest.git Update timestamp to include date --- diff --git a/src/gettime.h b/src/gettime.h index 2a6a211b8..44c159026 100644 --- a/src/gettime.h +++ b/src/gettime.h @@ -54,8 +54,8 @@ inline std::string getTimestamp() // This is not really thread-safe but it won't break anything // except its own output, so just go with it. struct tm *tm = localtime(&t); - char cs[20]; - strftime(cs, 20, "%H:%M:%S", tm); + char cs[20]; //YYYY-MM-DD HH:MM:SS + '\0' + strftime(cs, 20, "%Y-%m-%d %H:%M:%S", tm); return cs; }