]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- fixed up propagation of modes with arguments between servers.
authorAlexander Barton <alex@barton.de>
Wed, 8 Jan 2003 17:45:15 +0000 (17:45 +0000)
committerAlexander Barton <alex@barton.de>
Wed, 8 Jan 2003 17:45:15 +0000 (17:45 +0000)
src/ngircd/irc-channel.c

index e5b912b4eb62110bb35bab850db731eda9f62f17..b5fc07680dc39cc7ff9b1192a3682eb087f274dc 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-channel.c,v 1.23 2003/01/01 13:29:40 alex Exp $";
+static char UNUSED id[] = "$Id: irc-channel.c,v 1.24 2003/01/08 17:45:15 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -386,9 +386,13 @@ IRC_CHANINFO( CLIENT *Client, REQUEST *Req )
                ptr = Channel_Modes( chan );
                if( ! *ptr )
                {
-                       /* OK, es sind noch keine Modes gesetzt */
+                       /* OK, this channel doesn't have modes jet, set the received ones: */
                        Channel_SetModes( chan, &Req->argv[1][1] );
                        IRC_WriteStrChannelPrefix( Client, chan, from, FALSE, "MODE %s +%s", Req->argv[0], &Req->argv[1][1] );
+
+                       /* Delete modes which we never want to inherit */
+                       Channel_ModeDel( chan, 'l' );
+                       Channel_ModeDel( chan, 'k' );
                }
        }
        else Log( LOG_WARNING, "CHANNELINFO: invalid MODE format ignored!" );