diff --git a/Changes b/Changes index c87e450bc..f719133ec 100644 --- a/Changes +++ b/Changes @@ -687,3 +687,7 @@ Fixed broken /who Fixed bug with /whois and +I --Luke =================================== + +Fixed exempt propagation bug +--Luke +=================================== diff --git a/src/channel.c b/src/channel.c index e1799b807..2b7b3abb1 100644 --- a/src/channel.c +++ b/src/channel.c @@ -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);