summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864>2010-04-17 16:17:20 +0000
committerDukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864>2010-04-17 16:17:20 +0000
commitc66f28ed61e1224f4a21d03bc09ca8417bbe3dce (patch)
treec45db0d6817e973565a7cdf9266e5f4bf1e2cac9
parent87e96d6f528fd38aef754c3a1f5d837d2ad67614 (diff)
fixed missing SID on FJOIN in inspircd12 protocol module
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2899 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/protocol/inspircd12.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changes b/Changes
index d2717cd86..429856f89 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,7 @@ Anope Version 1.8 - SVN
-----------------------
4/15 F Fixed os_info to backup its database on Windows [ #00]
4/15 F Fixed a potential crash in cs_clear ops [#1154]
+4/16 F Fixed missing TS6SID on FJOIN in inspircd12 [ #00]
Anope Version 1.8.4
-------------------
diff --git a/src/protocol/inspircd12.c b/src/protocol/inspircd12.c
index a815a3455..fefe004bf 100644
--- a/src/protocol/inspircd12.c
+++ b/src/protocol/inspircd12.c
@@ -1005,7 +1005,7 @@ void inspircd_cmd_pong(char *servname, char *who)
void inspircd_cmd_join(char *user, char *channel, time_t chantime)
{
Uid *ud = (user ? find_uid(user) : NULL);
- send_cmd(NULL, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
+ send_cmd(TS6SID, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
}
/* UNSQLINE */