diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-04-17 16:17:20 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-04-17 16:17:20 +0000 |
commit | c66f28ed61e1224f4a21d03bc09ca8417bbe3dce (patch) | |
tree | c45db0d6817e973565a7cdf9266e5f4bf1e2cac9 /src | |
parent | 87e96d6f528fd38aef754c3a1f5d837d2ad67614 (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
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/inspircd12.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |