summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */