]> jfr.im git - irc/unrealircd/unrealircd.git/commitdiff
exempt bugs resolved
authorluke <redacted>
Sun, 15 Sep 2002 15:14:58 +0000 (15:14 +0000)
committerluke <redacted>
Sun, 15 Sep 2002 15:14:58 +0000 (15:14 +0000)
Changes
src/channel.c

diff --git a/Changes b/Changes
index c87e450bc4263af2abbdf85cd4f7b1b2a37c10a6..f719133ec0c43221ff756497b87d9a9e55996347 100644 (file)
--- a/Changes
+++ b/Changes
@@ -687,3 +687,7 @@ Fixed broken /who
 Fixed bug with /whois and +I
 --Luke
 ===================================
+
+Fixed exempt propagation bug
+--Luke
+===================================
index e1799b807c4f4324969f39741421eec8b56f50c6..2b7b3abb1b08703d308da92d14877c138f0e377c 100644 (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);