summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-05 12:42:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-05 12:42:20 +0000
commitf938b078f8e283f52a4be36da584ee001030a247 (patch)
tree38bde4cfb369dcc9edc16a5008997e278d766ee5 /src/inspircd.cpp
parent31900d8083615e8d3af2317410360fdaa75eba56 (diff)
Fixes to:
+s and +p channels wouldn't be synched correctly +s and +p never show in whois even when you're a member of them +s and +p never show in list even if you're a member of them git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1308 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 937354837..ecfb5539e 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3534,7 +3534,7 @@ void DoSync(serverrec* serv, char* tcp_host)
serv->SendPacket(data,tcp_host);
}
}
- char* chl = chlist(u->second);
+ char* chl = chlist(u->second,u->second);
if (strcmp(chl,""))
{
snprintf(data,MAXBUF,"J %s %s",u->second->nick,chl);