diff options
| author | 2006-07-28 12:00:25 +0000 | |
|---|---|---|
| committer | 2006-07-28 12:00:25 +0000 | |
| commit | 95840640cb374a0845c866bd1ad56a04dd833081 (patch) | |
| tree | 17fb64980c11b26d33967f58064f3579d2a1ca4d /src/modules/m_alias.cpp | |
| parent | Change some if fd > -1 to IS_LOCAL macro (diff) | |
| download | inspircd++-95840640cb374a0845c866bd1ad56a04dd833081.tar.gz inspircd++-95840640cb374a0845c866bd1ad56a04dd833081.tar.bz2 inspircd++-95840640cb374a0845c866bd1ad56a04dd833081.zip | |
Change all references to voodoo numbers (7, 3 etc) to the new bitwise constants for user->registered
Change a lot of user->fd > -1 to use the IS_LOCAL() macro
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4569 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_alias.cpp')
| -rw-r--r-- | src/modules/m_alias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 869bc6a1f..93df8e031 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -96,7 +96,7 @@ class ModuleAlias : public Module * and if theyre not registered yet, we dont want * to know either */ - if ((validated) || (user->registered != 7)) + if ((validated) || (user->registered != REG_ALL)) return 0; for (unsigned int i = 0; i < Aliases.size(); i++) |
