]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/core/m_join.c
.cvsignore files removed, SVN-Access replaced by Mercurial-Access
[irc/rqf/shadowircd.git] / modules / core / m_join.c
index 1b8120a911d3b61bfc785e41730d154a1ac078ce..d4b10361b65a0cba2d4f06a33bedc6df25f1a671 100644 (file)
@@ -1170,7 +1170,6 @@ set_final_mode(struct Mode *mode, struct Mode *oldmode)
                *mbuf++ = 'k';
                len = rb_sprintf(pbuf, "%s ", oldmode->key);
                pbuf += len;
-               pargs++;
        }
        if(oldmode->join_num && !mode->join_num)
        {
@@ -1200,7 +1199,6 @@ set_final_mode(struct Mode *mode, struct Mode *oldmode)
                *mbuf++ = 'l';
                len = rb_sprintf(pbuf, "%d ", mode->limit);
                pbuf += len;
-               pargs++;
        }
        if(mode->key[0] && strcmp(oldmode->key, mode->key))
        {
@@ -1212,7 +1210,6 @@ set_final_mode(struct Mode *mode, struct Mode *oldmode)
                *mbuf++ = 'k';
                len = rb_sprintf(pbuf, "%s ", mode->key);
                pbuf += len;
-               pargs++;
        }
        if(mode->join_num && (oldmode->join_num != mode->join_num || oldmode->join_time != mode->join_time))
        {
@@ -1224,7 +1221,6 @@ set_final_mode(struct Mode *mode, struct Mode *oldmode)
                *mbuf++ = 'j';
                len = rb_sprintf(pbuf, "%d:%d ", mode->join_num, mode->join_time);
                pbuf += len;
-               pargs++;
        }
        if(mode->forward[0] && strcmp(oldmode->forward, mode->forward) && ConfigChannel.use_forward)
        {
@@ -1236,7 +1232,6 @@ set_final_mode(struct Mode *mode, struct Mode *oldmode)
                *mbuf++ = 'f';
                len = rb_sprintf(pbuf, "%s ", mode->forward);
                pbuf += len;
-               pargs++;
        }
        *mbuf = '\0';
 }