what a tangled web we weave

This commit is contained in:
fishwaldo 2002-09-16 07:47:00 +00:00
parent 7d905be142
commit 0ebbe1d17b
2 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: channel.h,v 1.8 2002/09/16 07:36:01 fishwaldo Exp $
* $Id: channel.h,v 1.9 2002/09/16 07:47:00 fishwaldo Exp $
*/
#ifndef INCLUDED_channel_h
@ -154,7 +154,7 @@ struct Ban /* also used for exceptions -orabidoo */
/* Number of chanops, peon, voiced, halfops, chanadmins sublists */
#define NUMLISTS 4
#define NUMLISTS 5
#ifdef INTENSIVE_DEBUG
void do_channel_integrity_check(void);

View file

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: channel.c,v 1.10 2002/09/16 07:36:01 fishwaldo Exp $
* $Id: channel.c,v 1.11 2002/09/16 07:47:00 fishwaldo Exp $
*/
#include "stdinc.h"
@ -699,8 +699,8 @@ channel_member_names(struct Client *source_p,
members_ptr[0] = chptr->chanops.head;
members_ptr[1] = chptr->halfops.head;
members_ptr[2] = chptr->voiced.head;
members_ptr[3] = chptr->peons.head;
members_ptr[4] = chptr->chanadmins.head;
members_ptr[3] = chptr->chanadmins.head;
members_ptr[4] = chptr->peons.head;
is_member = IsMember(source_p, chptr);