]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_wallops.cpp
m_check Fix non-standard format specifier %s passed to strftime() causing problems...
[user/henk/code/inspircd.git] / src / commands / cmd_wallops.cpp
index 0effa3c5a88b9da8b553a993338af624312eb368..198997a950a4d09ccc45f81aeb5ad107d75d762f 100644 (file)
@@ -45,7 +45,7 @@ CmdResult CommandWallops::Handle (const std::vector<std::string>& parameters, Us
        std::string wallop("WALLOPS :");
        wallop.append(parameters[0]);
 
-       for (std::vector<LocalUser*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
+       for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
        {
                User* t = *i;
                if (t->IsModeSet('w'))