aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-04-26 13:00:51 +0200
committerGravatar Attila Molnar2014-04-26 13:00:51 +0200
commitf09a9b3ea537f17ee52337773a5eba321ff1ccd7 (patch)
tree6648632d8598715ffa03317afa77b759c491036f /src/modules/m_ident.cpp
parentDocument parameters and return value for the OnNamesListItem() hook (diff)
downloadinspircd++-f09a9b3ea537f17ee52337773a5eba321ff1ccd7.tar.gz
inspircd++-f09a9b3ea537f17ee52337773a5eba321ff1ccd7.tar.bz2
inspircd++-f09a9b3ea537f17ee52337773a5eba321ff1ccd7.zip
Remove redundant IS_LOCAL() checks discovered by static asserts
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r--src/modules/m_ident.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp
index 57944737c..1e01806b8 100644
--- a/src/modules/m_ident.cpp
+++ b/src/modules/m_ident.cpp
@@ -296,7 +296,7 @@ class ModuleIdent : public Module
try
{
- IdentRequestSocket *isock = new IdentRequestSocket(IS_LOCAL(user));
+ IdentRequestSocket *isock = new IdentRequestSocket(user);
ext.set(user, isock);
}
catch (ModuleException &e)