From 31bfcccd375bd70e212175dfb310ebc239487a62 Mon Sep 17 00:00:00 2001 From: w00t Date: Sat, 8 Sep 2007 00:25:36 +0000 Subject: [PATCH] Fix bug #408, reported and patched by Switch git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8021 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_operlog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_operlog.cpp b/src/modules/m_operlog.cpp index 9bbdbef256..4835447227 100644 --- a/src/modules/m_operlog.cpp +++ b/src/modules/m_operlog.cpp @@ -51,7 +51,7 @@ class ModuleOperLog : public Module if ((IS_OPER(user)) && (IS_LOCAL(user)) && (user->HasPermission(command))) { command_t* thiscommand = ServerInstance->Parser->GetHandler(command); - if ((thiscommand) && (thiscommand->flags_needed = 'o')) + if ((thiscommand) && (thiscommand->flags_needed == 'o')) { std::string plist; for (int j = 0; j < pcnt; j++)