From 0898f10f75bcd8ecde21c73da90955f95dc30e50 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 12 Apr 2008 14:47:20 +0000 Subject: [PATCH] In visual studio, CRT crashes when strftime() is given an invalid format specifier and %F/%T are not supported! -- reported along with stripcolor bug by jackmcbarn, thanks git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9467 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_alltime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp index 1ffd7c5b5..525402541 100644 --- a/src/modules/m_alltime.cpp +++ b/src/modules/m_alltime.cpp @@ -29,8 +29,8 @@ class CommandAlltime : public Command { char fmtdate[64]; time_t now = ServerInstance->Time(); - strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now)); - + strftime(fmtdate, sizeof(fmtdate), "%Y-%m-%d %H:%M:%S", gmtime(&now)); + std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " + ServerInstance->Config->ServerName + " is: " + fmtdate; -- 2.39.2