summaryrefslogtreecommitdiff
path: root/src/modules/m_operwho.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-09 12:32:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-09 12:32:53 +0000
commit09027c63880b48f5cf0f8ce65c61329aaf9439e6 (patch)
treefb44fac3210d1c31d06bb4191bcc70c9b53a0da5 /src/modules/m_operwho.cpp
parent3a484a4afda5e7667843e109e2ff1e17786e3fb4 (diff)
Fixed to use iterator
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3585 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_operwho.cpp')
-rw-r--r--src/modules/m_operwho.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/m_operwho.cpp b/src/modules/m_operwho.cpp
index 8926b2a9c..53f87b087 100644
--- a/src/modules/m_operwho.cpp
+++ b/src/modules/m_operwho.cpp
@@ -75,7 +75,7 @@ class ModuleOperWho : public Module
for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
{
*tmp = 0;
- Ptr = i->second->chans[0].channel;
+ Ptr = ((ucrec*)*(i->second->chans.begin()))->channel;
if (*i->second->awaymsg) {
strlcat(tmp, "G", 9);
} else {
@@ -91,11 +91,11 @@ class ModuleOperWho : public Module
{
if ((!strcmp(parameters[0],"0")) || (!strcmp(parameters[0],"*")))
{
- if ((user->chans.size()) && (user->chans[0].channel))
+ if ((user->chans.size()) && (((ucrec*)*(user->chans.begin()))->channel))
{
for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
{
- Ptr = i->second->chans[0].channel;
+ Ptr = ((ucrec*)*(i->second->chans.begin()))->channel;
// suggested by phidjit and FCS
if ((!common_channels(user,i->second)) && (isnick(i->second->nick)))
{
@@ -164,7 +164,7 @@ class ModuleOperWho : public Module
strlcat(tmp, "H" ,9);
}
if (*u->oper) { strlcat(tmp, "*" ,9); }
- WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, u->chans.size() && u->chans[0].channel ? u->chans[0].channel->name
+ WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, u->chans.size() && ((ucrec*)*(u->chans.begin()))->channel ? ((ucrec*)*(u->chans.begin()))->channel->name
: "*", u->ident, u->dhost, u->server, u->nick, tmp, u->fullname);
}
WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]);
@@ -186,8 +186,8 @@ class ModuleOperWho : public Module
} else {
strlcat(tmp, "H" ,9);
}
- WriteServ(user->fd,"352 %s %s %s %s %s %s %s* :0 %s", user->nick, oper->chans.size() && oper->chans[0].channel ? oper->chans[0].channel->name
- : "*", oper->ident, oper->host, oper->server, oper->nick, tmp, oper->fullname);
+ WriteServ(user->fd,"352 %s %s %s %s %s %s %s* :0 %s", user->nick, oper->chans.size() && ((ucrec*)*(oper->chans.begin()))->channel ?
+ ((ucrec*)*(oper->chans.begin()))->channel->name : "*", oper->ident, oper->host, oper->server, oper->nick, tmp, oper->fullname);
}
WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]);
return 1;