diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-07-04 12:20:20 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-07-04 12:20:20 +0000 |
commit | 3983d3accb72909c11b69baedce486a31b992ec3 (patch) | |
tree | 13f6cb62053b9b72106bbe368f314e187f198930 /messages.c | |
parent | 44c4af9df49d8280bda3cb128523b5b846f7dfdd (diff) |
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
Diffstat (limited to 'messages.c')
-rw-r--r-- | messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |