]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_who.cpp
Skip certificate generation if we're running non-interactive
[user/henk/code/inspircd.git] / src / cmd_who.cpp
index e48e013ecf816b9915e69a1130786eb602404f4a..367bdb326715335ccd4570d4ae165381c39badab 100644 (file)
@@ -61,7 +61,7 @@ extern "C" command_t* init_command(InspIRCd* Instance)
        return new cmd_who(Instance);
 }
 
-void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
+CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
 {
        /*
         * XXX - RFC says:
@@ -175,6 +175,8 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                                        wholine = wholine + getlastchanname(oper) + " " + oper->ident + " " + (opt_showrealhost ? oper->host : oper->dhost) + " " + 
                                                        oper->server + " " + oper->nick + " ";
 
+                                       ch = ServerInstance->FindChan(getlastchanname(oper));
+
                                        /* away? */
                                        if (*oper->awaymsg)
                                        {
@@ -191,7 +193,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                                                wholine.append("*");
                                        }
        
-                                       wholine = wholine + ch->GetPrefixChar(oper) + " :0 " + oper->fullname;
+                                       wholine = wholine + (ch ? ch->GetPrefixChar(oper) : "") + " :0 " + oper->fullname;
                                        whoresults.push_back(wholine);
                                }
                        }
@@ -207,6 +209,8 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                                        wholine = wholine + getlastchanname(i->second) + " " + i->second->ident + " " + (opt_showrealhost ? i->second->host : i->second->dhost) + " " + 
                                                i->second->server + " " + i->second->nick + " ";
        
+                                       ch = ServerInstance->FindChan(getlastchanname(i->second));
+
                                        /* away? */
                                        if (*(i->second)->awaymsg)
                                        {
@@ -223,7 +227,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                                                wholine.append("*");
                                        }
 
-                                       wholine = wholine + ch->GetPrefixChar(i->second) + " :0 " + i->second->fullname;
+                                       wholine = wholine + (ch ? ch->GetPrefixChar(i->second) : "") + " :0 " + i->second->fullname;
                                        whoresults.push_back(wholine);
                                }
                        }
@@ -235,10 +239,12 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                for (std::vector<std::string>::const_iterator n = whoresults.begin(); n != whoresults.end(); n++)
                        user->WriteServ(*n);
                user->WriteServ("315 %s %s :End of /WHO list.",user->nick, *parameters[0] ? parameters[0] : "*");
+               return CMD_SUCCESS;
        }
        else
        {
                /* BZZT! Too many results. */
                user->WriteServ("315 %s %s :Too many results",user->nick, parameters[0]);
+               return CMD_FAILURE;
        }
 }