summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_auditorium.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp
index e55aa84a4..7519b1189 100644
--- a/src/modules/m_auditorium.cpp
+++ b/src/modules/m_auditorium.cpp
@@ -157,10 +157,10 @@ class ModuleAuditorium : public Module
include.erase(c);
// however, that might hide me from ops that can see me...
const UserMembList* users = c->GetUsers();
- for(UserMembCIter i = users->begin(); i != users->end(); i++)
+ for(UserMembCIter j = users->begin(); j != users->end(); j++)
{
- if (IS_LOCAL(i->first) && CanSee(i->first, memb))
- exception[i->first] = true;
+ if (IS_LOCAL(j->first) && CanSee(j->first, memb))
+ exception[j->first] = true;
}
}
}