diff options
| author | 2006-08-10 18:04:19 +0000 | |
|---|---|---|
| committer | 2006-08-10 18:04:19 +0000 | |
| commit | fd2eb26472bcc0b7b144f40523ff820cba82f574 (patch) | |
| tree | 367926c5a429de9eca5db303c8d12d146fa8c6c8 /src/modules/m_chgident.cpp | |
| parent | PublishFeature, FindFeature, FindModule, PriorityBefore, PriorityAfter -> Ins... (diff) | |
| download | inspircd++-fd2eb26472bcc0b7b144f40523ff820cba82f574.tar.gz inspircd++-fd2eb26472bcc0b7b144f40523ff820cba82f574.tar.bz2 inspircd++-fd2eb26472bcc0b7b144f40523ff820cba82f574.zip | |
Move IsNick, IsIdent into class InspIRCd, update modules that use it.
Change message.h to just a #warning saying its deprecated, and remove all use of it from the core :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4847 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chgident.cpp')
| -rw-r--r-- | src/modules/m_chgident.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_chgident.cpp b/src/modules/m_chgident.cpp index 391f4b20b..7efe2e755 100644 --- a/src/modules/m_chgident.cpp +++ b/src/modules/m_chgident.cpp @@ -1,7 +1,6 @@ #include <string> #include "users.h" #include "modules.h" -#include "message.h" #include "helperfuncs.h" #include "inspircd.h" @@ -26,7 +25,7 @@ class cmd_chgident : public command_t if(dest) { - if(!isident(parameters[1])) + if(!ServerInstance->IsIdent(parameters[1])) { user->WriteServ("NOTICE %s :*** Invalid characters in ident", user->nick); return; |
