1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 04:46:38 +02:00

Backport from 1.9.1 - inspircd11: Pass chants in JOIN message to not blow away timestamps.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2023 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-12 21:54:33 +00:00
parent 6c801d5780
commit 07892e8b4b
+1 -1
View File
@@ -892,7 +892,7 @@ void inspircd_cmd_pong(char *servname, char *who)
/* JOIN */
void inspircd_cmd_join(char *user, char *channel, time_t chantime)
{
send_cmd(user, "JOIN %s", channel);
send_cmd(user, "JOIN %s %ld", channel, (unsigned int)chantime);
}
/* UNSQLINE */