diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-12 14:02:30 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-12 14:02:30 +0000 |
commit | e8383c6ccd01185c18595647b49be3a1072ad495 (patch) | |
tree | 1c4d6b687bec6fbb744488e52b2fd9d35e6f8cc0 /protocol.c | |
parent | ab0f2d33320a1e1b1d3d2aa38857b08cc908f36f (diff) |
BUILD : 1.7.3 (188) BUGS : 101 NOTES : Unified kill_user function to handle all ircd protocols.
git-svn-id: svn://svn.anope.org/anope/trunk@188 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@133 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'protocol.c')
-rw-r--r-- | protocol.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/protocol.c b/protocol.c index 0a6107d8c..ba021bf3f 100644 --- a/protocol.c +++ b/protocol.c @@ -109,22 +109,8 @@ void s_sqline(char *mask, char *reason) } } else { #endif - /* int i; - User *u, *next; */ - send_cmd(NULL, "SQLINE %s :%s", mask, reason); - /* for (i = 0; i < 1024; i++) { - for (u = userlist[i]; u; u = next) { - next = u->next; - if (match_wild_nocase(mask, u->nick)) - #ifdef IRC_BAHAMUT - send_cmd(NULL, "SVSKILL %s :%s", u->nick, reason); - #else - kill_user(s_OperServ, u->nick, reason); - #endif - } - } */ #ifdef IRC_BAHAMUT } #endif |