]> jfr.im git - irc/quakenet/newserv.git/blobdiff - trusts2/trusts_ident.c
trustscommands as seperate module
[irc/quakenet/newserv.git] / trusts2 / trusts_ident.c
index 448cd55d1c4010fae104912188f8d561cb202e49..d4a9be1345f497a9491f3037f1fb2f3c78009b2e 100644 (file)
@@ -16,7 +16,7 @@ void increment_ident_count(nick *np, trustgroup_t *tg) {
   if(identcnt) {
     /* ident exists */
     if( tg->maxperident && (identcnt->currenton+1) > tg->maxperident) {
-      trust_debug("NEWNICK TRUSTED BAD USER: Exceeding User (%s) Ident Limit (%d/%d)",np->ident, identcnt->currenton+1, tg->maxperident);
+      controlwall(NO_OPER, NL_TRUSTS, "TG %lu: Exceeded Ident Limit (%d/%d) for %s!%s@%s (%s)",tg->id, identcnt->currenton+1, tg->maxperident, np->nick, np->ident, np->host->name->content, removeusers == 1 ? "disconnected": "ignored");
       //killuser(NULL, np, "USER: Exceeding User Ident Limit.");
     }
     identcnt->currenton++;