]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_restrictchans.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.cpp
index 9e660e8ed16f0d1843b480384ff5a6a772fdc212..9c7ed1213ee2cfdfa230ae0bc1d5af0c6ef831d7 100644 (file)
@@ -47,7 +47,7 @@ class ModuleRestrictChans : public Module
                        // user is not an oper and its not in the allow list
                        if ((!user->IsOper()) && (allowchans.find(cname) == allowchans.end()))
                        {
-                               user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s :Only IRC operators may create new channels", cname.c_str());
+                               user->WriteNumeric(ERR_BANNEDFROMCHAN, cname, "Only IRC operators may create new channels");
                                return MOD_RES_DENY;
                        }
                }