diff options
author | geniusdex 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 |
---|---|---|
committer | geniusdex 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 |
commit | 4a5cf6e1e3a3e8031cc4980477c456ec684cb971 (patch) | |
tree | 7ca35b3ff7a3897d10f7f56a78ea0c71eca4747f /src/protocol/plexus3.c | |
parent | f8f64944c27f09a728f2c75d3b66ca7ce1e700ae (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/plexus3.c')
-rw-r--r-- | src/protocol/plexus3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/plexus3.c b/src/protocol/plexus3.c index aa5a42c99..c2ac6a934 100644 --- a/src/protocol/plexus3.c +++ b/src/protocol/plexus3.c @@ -843,7 +843,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); } |