From 3983d3accb72909c11b69baedce486a31b992ec3 Mon Sep 17 00:00:00 2001 From: "certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sun, 4 Jul 2004 12:20:20 +0000 Subject: [PATCH] BUILD : 1.7.4 (228) BUGS : NOTES : Fixed a bug with m_time. git-svn-id: svn://svn.anope.org/anope/trunk@228 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@161 5417fbe8-f217-4b02-8779-1006273d7864 --- Changes | 1 + messages.c | 2 +- version.log | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 5495cc8f2..29708a7d4 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ Anope Version S V N ------------------- Provided by Anope Dev. - 2004 06/18 A Added proper Bahamut1.8 support. [ #55] +07/04 F Fixed a bug with m_time. [ #00] 06/30 F Fixed bug which caused failure in anope crontab script. [ #00] 06/28 F Fixed compiling bug with UltimateIRCd3, ViagraIRCd, Rage2IRCd. [ #00] 06/26 F Removed TSMODE from usermodes for bahamut. [#112] diff --git a/messages.c b/messages.c index 4d2488987..9e5d4466b 100644 --- a/messages.c +++ b/messages.c @@ -1004,7 +1004,7 @@ static int m_time(char *source, int ac, char **av) time(&t); tm = localtime(&t); strftime(buf, sizeof(buf), "%a %b %d %H:%M:%S %Y %Z", tm); - send_cmd(NULL, "391 :%s", buf); + send_cmd(NULL, "391 %s %s :%s", source, ServerName, buf); return MOD_CONT; } diff --git a/version.log b/version.log index 38dff1599..5e9b1d22d 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="223" +VERSION_BUILD="228" # $Log$ # +# BUILD : 1.7.4 (228) +# BUGS : +# NOTES : Fixed a bug with m_time. +# # BUILD : 1.7.4 (223) # BUGS : # NOTES : Anope crontab failed because when path was too long the ps ux was cut short so grep failed. ps ux was changed to ps auwx to stop this problem (w is stops cutting the lines short)