]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_banredirect.cpp
Argh, i give up
[user/henk/code/inspircd.git] / src / modules / m_banredirect.cpp
index 4a7db80522a4ad9bca2521ee5b5245444b78769c..80a79e25b256da57a8774877ff375f63cc2c60d4 100644 (file)
@@ -154,7 +154,7 @@ class BanRedirect : public ModeWatcher
                                                                                
                                                                                if(redirects->empty())
                                                                                {
-                                                                                       DELETE(redirects);
+                                                                                       delete redirects;
                                                                                        channel->Shrink("banredirects");
                                                                                }
                                                                                
@@ -194,12 +194,16 @@ class ModuleBanRedirect : public Module
                nofollow = false;
                
                if(!ServerInstance->AddModeWatcher(re))
+               {
+                       delete re;
                        throw ModuleException("Could not add mode watcher");
+               }
 
                OnRehash(NULL, "");
 
                Implementation list[] = { I_OnRehash, I_OnUserPreJoin, I_OnChannelDelete, I_OnCleanup };
                Me->Modules->Attach(list, this, sizeof(list));
+
        }
        
        virtual void OnChannelDelete(Channel* chan)
@@ -243,7 +247,7 @@ class ModuleBanRedirect : public Module
                                        ServerInstance->SendMode(mode_junk, stackresult.size() + 1, ServerInstance->FakeClient);
                                }
                                
-                               DELETE(redirects);
+                               delete redirects;
                                chan->Shrink("banredirects");
                        }
                }
@@ -254,7 +258,7 @@ class ModuleBanRedirect : public Module
                ExceptionModule = ServerInstance->Modules->Find("m_banexception.so");
        }
 
-       virtual int OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs)
+       virtual int OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, bool synching = false)
        {
                /* This prevents recursion when a user sets multiple ban redirects in a chain
                 * (thanks Potter)
@@ -303,7 +307,7 @@ class ModuleBanRedirect : public Module
                                                        user->WriteServ("474 %s %s :Cannot join channel (You are banned)", user->nick, chan->name);
                                                        user->WriteServ("470 %s :You are being automatically redirected to %s", user->nick, redir->targetchan.c_str());
                                                        nofollow = true;
-                                                       Channel::JoinUser(ServerInstance, user, redir->targetchan.c_str(), false, "", ServerInstance->Time(true));
+                                                       Channel::JoinUser(ServerInstance, user, redir->targetchan.c_str(), false, "", false, ServerInstance->Time(true));
                                                        nofollow = false;
                                                        return 1;
                                                }
@@ -317,7 +321,7 @@ class ModuleBanRedirect : public Module
        virtual ~ModuleBanRedirect()
        {
                ServerInstance->Modes->DelModeWatcher(re);
-               DELETE(re);
+               delete re;
        }
        
        virtual Version GetVersion()