From 0f32d2e55375333c0eb8a6450f6db36071f40561 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 6 Oct 2023 11:06:58 +0100 Subject: [PATCH] Use a more human readable datetime format. --- src/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.cpp b/src/misc.cpp index 39c688ea6..4e46f4e9b 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -351,7 +351,7 @@ Anope::string Anope::strftime(time_t t, const NickCore *nc, bool short_output) { tm tm = *localtime(&t); char buf[BUFSIZE]; - strftime(buf, sizeof(buf), Language::Translate(nc, _("%b %d %H:%M:%S %Y %Z")), &tm); + strftime(buf, sizeof(buf), Language::Translate(nc, _("%b %d %Y %H:%M:%S %Z")), &tm); if (short_output) return buf; if (t < Anope::CurTime)