Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_12_branch
Commit time: 2007-05-20 15:01:29 UTC

Modified files:
  Tag: u2_10_12_branch
     ircd/m_burst.c ChangeLog

Log message:

Fix SF#1706014 by not giving in-burst servers special lenience.

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.710.2.191 ircu2.10/ChangeLog:1.710.2.192
--- ircu2.10/ChangeLog:1.710.2.191      Sun May 20 07:50:27 2007
+++ ircu2.10/ChangeLog  Sun May 20 08:01:19 2007
@@ -1,5 +1,10 @@
 2007-05-20  Michael Poole <[EMAIL PROTECTED]>
 
+       * ircd/m_burst.c (ms_burst): Do not let bursting servers join a
+       user to a channel more than once.
+
+2007-05-20  Michael Poole <[EMAIL PROTECTED]>
+
        * ircd/ircd_features.c (feature_set): Report new value of feature
        for /set.
        (feature_reset): Likewise, for /reset.
Index: ircu2.10/ircd/m_burst.c
diff -u ircu2.10/ircd/m_burst.c:1.40.2.4 ircu2.10/ircd/m_burst.c:1.40.2.5
--- ircu2.10/ircd/m_burst.c:1.40.2.4    Sun May 20 07:40:33 2007
+++ ircu2.10/ircd/m_burst.c     Sun May 20 08:01:19 2007
@@ -20,7 +20,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: m_burst.c,v 1.40.2.4 2007/05/20 14:40:33 entrope Exp $
+ * $Id: m_burst.c,v 1.40.2.5 2007/05/20 15:01:19 entrope Exp $
  */
 
 /*
@@ -545,7 +545,7 @@
             last_oplevel = oplevel;
          }
 
-         if (IsBurst(sptr) || !(member = find_member_link(chptr, acptr)))
+         if (!(member = find_member_link(chptr, acptr)))
          {
            add_user_to_channel(chptr, acptr, current_mode, oplevel);
             if (!(current_mode & CHFL_DELAYED))
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to