1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 19:14:46 +02:00

Fixed a shun bug

This commit is contained in:
codemastr
2001-01-09 23:26:10 +00:00
parent 50beda9644
commit 7a0de228fc
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -89,3 +89,4 @@
- X:line was replaced with drpass {} in /restart and /die (will make them faster as well)
- Made +u do a auditorium/star chat feature, suggested by |Martin|=======
- Fixed a G:line bug that would allow certain masks to be interpreted as *@*
- Fixed the same bug in shun that affected G:line
+1 -1
View File
@@ -1032,7 +1032,7 @@ int m_shun(aClient *cptr, aClient *sptr, int parc, char *parv[])
nochecks:
usermask = strtok(mask, "@");
hostmask = strtok(NULL, "@");
hostmask = strtok(NULL, "");
tkl_check_expire();
for (tk = tklines; tk; tk = tk->next)