summaryrefslogtreecommitdiff
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-04-26 13:00:51 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-04-26 13:00:51 +0200
commitf09a9b3ea537f17ee52337773a5eba321ff1ccd7 (patch)
tree6648632d8598715ffa03317afa77b759c491036f /src/modules/m_ident.cpp
parent5b3bc00fb410f49d341013979937c1d82f6a9b24 (diff)
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)