X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_filter.cpp;h=bb99ffa601db730f9c806548a914349add679b28;hb=fcafba14c5408360ec725ed1649ede75b7ae52c1;hp=3bbdf0eb414611ef961dad349f658dc61b037501;hpb=fa2d0dd4f0e96cf0e937cc3e79b68519e15f2fb0;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index 3bbdf0eb4..bb99ffa60 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -167,7 +167,7 @@ class CommandFilter : public Command if ((type != "gline") && (type != "none") && (type != "block") && (type != "kill") && (type != "silent")) { - user->WriteServ("NOTICE %s :*** Invalid filter type '%s'. Supported types are 'gline', 'none', 'block', 'silent' and 'kill'.", user->nick.c_str(), freeform.c_str()); + user->WriteServ("NOTICE %s :*** Invalid filter type '%s'. Supported types are 'gline', 'none', 'block', 'silent' and 'kill'.", user->nick.c_str(), type.c_str()); return CMD_FAILURE; }