1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-27 01:36:37 +02:00

exempt bugs resolved

This commit is contained in:
luke
2002-09-15 15:14:58 +00:00
parent e9342567bf
commit caebff8d64
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -687,3 +687,7 @@ Fixed broken /who
Fixed bug with /whois and +I
--Luke
===================================
Fixed exempt propagation bug
--Luke
===================================
+1 -1
View File
@@ -261,7 +261,7 @@ static int add_exbanid(aClient *cptr, aChannel *chptr, char *banid)
return -1;
}
for (ban = chptr->banlist; ban; ban = ban->next)
for (ban = chptr->exlist; ban; ban = ban->next)
{
/* wtf is this?
len += strlen(ban->banstr);