X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/1ebf4db4c6b70ec87bc9a440f4942ac7aa96ed6c..420b2c9a104d9aa7c232345614b8103292600678:/src/channel.c diff --git a/src/channel.c b/src/channel.c index 9be36d2..c0fdcc3 100644 --- a/src/channel.c +++ b/src/channel.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: channel.c 3259 2007-03-15 18:09:08Z jilles $ + * $Id: channel.c 3580 2007-11-07 23:45:14Z jilles $ */ #include "stdinc.h" @@ -93,7 +93,7 @@ allocate_channel(const char *chname) { struct Channel *chptr; chptr = BlockHeapAlloc(channel_heap); - DupNString(chptr->chname, chname, CHANNELLEN); + DupString(chptr->chname, chname); return (chptr); } @@ -109,8 +109,8 @@ allocate_ban(const char *banstr, const char *who) { struct Ban *bptr; bptr = BlockHeapAlloc(ban_heap); - DupNString(bptr->banstr, banstr, BANLEN); - DupNString(bptr->who, who, BANLEN); + DupString(bptr->banstr, banstr); + DupString(bptr->who, who); return (bptr); } @@ -384,6 +384,7 @@ destroy_channel(struct Channel *chptr) free_channel_list(&chptr->banlist); free_channel_list(&chptr->exceptlist); free_channel_list(&chptr->invexlist); + free_channel_list(&chptr->quietlist); /* Free the topic */ free_topic(chptr); @@ -1110,9 +1111,8 @@ static const struct mode_letter * * inputs - pointer to channel * - pointer to client - * output - NONE - * side effects - write the "simple" list of channel modes for channel - * chptr onto buffer mbuf with the parameters in pbuf. + * output - string with simple modes + * side effects - result from previous calls overwritten * * Stolen from ShadowIRCd 4 --nenolod */ @@ -1137,38 +1137,39 @@ channel_modes(struct Channel *chptr, struct Client *client_p) { *mbuf++ = 'l'; - if(IsMember(client_p, chptr) || IsServer(client_p) || IsMe(client_p)) - pbuf += ircsprintf(pbuf, "%d ", chptr->mode.limit); + if(!IsClient(client_p) || IsMember(client_p, chptr)) + pbuf += ircsprintf(pbuf, " %d", chptr->mode.limit); } if(*chptr->mode.key) { *mbuf++ = 'k'; - if(*pbuf || IsMember(client_p, chptr) || IsServer(client_p) || IsMe(client_p)) - pbuf += ircsprintf(pbuf, "%s ", chptr->mode.key); + if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr)) + pbuf += ircsprintf(pbuf, " %s", chptr->mode.key); } if(chptr->mode.join_num) { *mbuf++ = 'j'; - if(*pbuf || IsMember(client_p, chptr) || IsServer(client_p) || IsMe(client_p)) - pbuf += ircsprintf(pbuf, "%d:%d ", chptr->mode.join_num, + if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr)) + pbuf += ircsprintf(pbuf, " %d:%d", chptr->mode.join_num, chptr->mode.join_time); } - if(*chptr->mode.forward && (ConfigChannel.use_forward || IsServer(client_p) || IsMe(client_p))) + if(*chptr->mode.forward && (ConfigChannel.use_forward || !IsClient(client_p))) { *mbuf++ = 'f'; - if(*pbuf || IsMember(client_p, chptr) || IsServer(client_p) || IsMe(client_p)) - pbuf += ircsprintf(pbuf, "%s ", chptr->mode.forward); + if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr)) + pbuf += ircsprintf(pbuf, " %s", chptr->mode.forward); } *mbuf = '\0'; - ircsprintf(final, "%s %s", buf1, buf2); + strlcpy(final, buf1, sizeof final); + strlcat(final, buf2, sizeof final); return final; }