]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ircv3.cpp
m_spanningtree Translate SINFO version to VERSION and vice versa for 1202 protocol...
[user/henk/code/inspircd.git] / src / modules / m_ircv3.cpp
index e8018aea6c1adf79967bc0d616acedb2b5db3b15..5cb2ab6b131bc6f3f51e6ccb02a8311406848f58 100644 (file)
@@ -33,7 +33,7 @@ class ModuleIRCv3 : public Module
 
        void WriteNeighboursWithExt(User* user, const std::string& line, const LocalIntExt& ext)
        {
-               UserChanList chans(user->chans);
+               IncludeChanList chans(user->chans.begin(), user->chans.end());
 
                std::map<User*, bool> exceptions;
                FOREACH_MOD(OnBuildNeighborList, (user, chans, exceptions));
@@ -48,9 +48,9 @@ class ModuleIRCv3 : public Module
 
                // Now consider sending it to all other users who has at least a common channel with the user
                std::set<User*> already_sent;
-               for (UCListIter i = chans.begin(); i != chans.end(); ++i)
+               for (IncludeChanList::const_iterator i = chans.begin(); i != chans.end(); ++i)
                {
-                       const UserMembList* userlist = (*i)->GetUsers();
+                       const UserMembList* userlist = (*i)->chan->GetUsers();
                        for (UserMembList::const_iterator m = userlist->begin(); m != userlist->end(); ++m)
                        {
                                /*