summaryrefslogtreecommitdiff
path: root/src/modules/extra/m_sqloper.cpp
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-28 22:04:21 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-28 22:04:21 +0000
commit5f8bd5770222d05a0cb9299990cb7b86145f8fd9 (patch)
treee461c4d0eb78300a5765b4f6659a54d70513f9ae /src/modules/extra/m_sqloper.cpp
parent0605ba6ecbaa34b185674047e976773de8bf116a (diff)
Deleted the semicolon that had half the dev team wondering...
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2955 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_sqloper.cpp')
-rw-r--r--src/modules/extra/m_sqloper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_sqloper.cpp b/src/modules/extra/m_sqloper.cpp
index 9a3800685..14c373f28 100644
--- a/src/modules/extra/m_sqloper.cpp
+++ b/src/modules/extra/m_sqloper.cpp
@@ -156,7 +156,7 @@ class ModuleSQLOper : public Module
std::string TypeName = Conf->ReadValue("type","name",j);
Srv->Log(DEBUG,"Scanning opertype: "+TypeName);
std::string pattern = std::string(user->ident) + "@" + std::string(user->host);
- if ((TypeName == rowresult->GetField("type")) && (Srv->MatchText(pattern,rowresult->GetField("hostname"))));
+ if ((TypeName == rowresult->GetField("type")) && (Srv->MatchText(pattern,rowresult->GetField("hostname"))))
{
Srv->Log(DEBUG,"Host and type match: "+TypeName+" "+rowresult->GetField("type"));
/* found this oper's opertype */