summaryrefslogtreecommitdiff
path: root/src/protocol/plexus2.c
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-12-28 19:12:02 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-12-28 19:12:02 +0000
commit4a5cf6e1e3a3e8031cc4980477c456ec684cb971 (patch)
tree7ca35b3ff7a3897d10f7f56a78ea0c71eca4747f /src/protocol/plexus2.c
parentf8f64944c27f09a728f2c75d3b66ca7ce1e700ae (diff)
BUILD : 1.7.19 (1322) BUGS : 685 NOTES : Applied a patch by Jilles which should fix SJOIN not always sending the correct TS
git-svn-id: svn://svn.anope.org/anope/trunk@1322 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1040 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/plexus2.c')
-rw-r--r--src/protocol/plexus2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/plexus2.c b/src/protocol/plexus2.c
index 91d33c78d..4b6e19f37 100644
--- a/src/protocol/plexus2.c
+++ b/src/protocol/plexus2.c
@@ -866,7 +866,7 @@ plexus_cmd_unsqline (char *user)
void
plexus_cmd_join (char *user, char *channel, time_t chantime)
{
- send_cmd (ServerName, "SJOIN %ld %s + :%s", (long int) time (NULL), channel,
+ send_cmd (ServerName, "SJOIN %ld %s + :%s", (long int) chantime, channel,
user);
}