]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/userprocess.cpp
Rename quietban to muteban, change character to +b m:, this way it fits with cmode...
[user/henk/code/inspircd.git] / src / userprocess.cpp
index 11fcfa59cf23eac2d536bb1eb65c468a8066f0b4..3dc3143de02abaa8b441813e695c423147499700 100644 (file)
 
 void FloodQuitUserHandler::Call(User* current)
 {
-       Server->Logs->Log("USERS",DEFAULT,"Excess flood from: %s@%s", current->ident.c_str(), current->host);
+       Server->Logs->Log("USERS",DEFAULT,"Excess flood from: %s@%s", current->ident.c_str(), current->host.c_str());
        Server->SNO->WriteToSnoMask('f',"Excess flood from: %s%s%s@%s",
                        current->registered == REG_ALL ? current->nick.c_str() : "",
-                       current->registered == REG_ALL ? "!" : "", current->ident.c_str(), current->host);
+                       current->registered == REG_ALL ? "!" : "", current->ident.c_str(), current->host.c_str());
        Server->Users->QuitUser(current, "Excess flood");
 
        if (current->registered != REG_ALL)