]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sslmodes.cpp
m_spanningtree Remove unneeded #includes
[user/henk/code/inspircd.git] / src / modules / m_sslmodes.cpp
index be215924bd81e4613eefb345a30e77e47e23629a..d862a07060ec278bdc2e21771373a846c1439f4a 100644 (file)
@@ -22,7 +22,7 @@
 
 
 #include "inspircd.h"
-#include "ssl.h"
+#include "modules/ssl.h"
 
 /* $ModDesc: Provides channel mode +z to allow for Secure/SSL only channels */
 
@@ -126,9 +126,9 @@ class ModuleSSLModes : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       void On005Numeric(std::string &output)
+       void On005Numeric(std::map<std::string, std::string>& tokens)
        {
-               ServerInstance->AddExtBanChar('z');
+               tokens["EXTBAN"].push_back('z');
        }
 
        Version GetVersion()