diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-12 21:54:33 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-12 21:54:33 +0000 |
commit | 07892e8b4b0df3cd8a14c9c3cd60f7e1df48deb3 (patch) | |
tree | fa5a8101f3b30bc2326d1606a3ebef8f48e137f0 | |
parent | 6c801d57803fcbf3064c1cc1a021c52579f62170 (diff) |
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
-rw-r--r-- | src/protocol/inspircd11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index a94c70d7c..a81c8a79d 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -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 */ |