From 454c039711783c6226818b71d18a2ab936c9082d Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 24 Mar 2005 16:37:37 +0000 Subject: Fixed minor typo in the bugfix, wrong number of brackets in a confusing if() git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@894 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_services.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_services.cpp b/src/modules/m_services.cpp index 52d0c0baa..878724168 100644 --- a/src/modules/m_services.cpp +++ b/src/modules/m_services.cpp @@ -51,7 +51,7 @@ class ModuleServices : public Module // FCS - BugFix for #27 :) if ((!strchr(user->modes,'r')) && (mode_on == false)) { return 1; - } else if (strchr(user->modes,'r')) && (mode_on == true)) { + } else if ((strchr(user->modes,'r')) && (mode_on == true)) { return 1; } else { return 0; -- cgit v1.2.3